diff options
Diffstat (limited to 'rq/utils.py')
-rw-r--r-- | rq/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rq/utils.py b/rq/utils.py index 7bcb392..3e44a98 100644 --- a/rq/utils.py +++ b/rq/utils.py @@ -217,4 +217,4 @@ def enum(name, *sequential, **named): # On Python 2 type() requires a byte string (which is str() on Python 2). # On Python 3 it does not matter, so we'll use str(), which acts as # a no-op. - return type(str(name), (), values)
\ No newline at end of file + return type(str(name), (), values) |