Skip to content

Commit

Permalink
enumeration: fix __prepare__
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Dec 4, 2015
1 parent b9c2f0d commit 53cabe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uv/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __new__(cls, name, _, attributes):
class _EnumerationMeta(type):
value2member = {}

def __prepare__(mcs, cls, bases):
def __prepare__(mcs, *args, **kwargs):
return OrderedDict()

def __new__(mcs, name, bases, attributes):
Expand Down

0 comments on commit 53cabe5

Please sign in to comment.