summaryrefslogtreecommitdiff
path: root/ricky/param/enum.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-12-05 17:23:14 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2015-12-05 17:23:14 -0800
commitdac73bd39db07e2fc471fb306f62d48d9a7faf9e (patch)
tree784f52e7be7428f3d8c42a0cfafc7d4afe3b414d /ricky/param/enum.py
parente85b0885ac45e5773a2e9dfb2b91bc8a57de98e2 (diff)
updated imbreak
Diffstat (limited to 'ricky/param/enum.py')
-rw-r--r--ricky/param/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ricky/param/enum.py b/ricky/param/enum.py
index 3a9fe0e..d4a839a 100644
--- a/ricky/param/enum.py
+++ b/ricky/param/enum.py
@@ -5,7 +5,7 @@ import decimal
class Enum(Param):
def __init__(self, options=None, **kwargs):
- self._options = set(options)
+ self._options = tuple(options)
if not self._options:
raise ValueError("Object must be initialized with options set")
super(Enum, self).__init__(**kwargs)