Skip to content

Commit

Permalink
new values
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 17, 2015
1 parent 0656928 commit 462b26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class Model(legacy.with_meta(meta.Ordered, observer.Observable)):
"""

def __new__(cls, *args, **kwargs):
instance = super(Model, cls).__new__(*args, **kwargs)
instance = super(Model, cls).__new__(cls, *args, **kwargs)
instance.__dict__["model"] = {}
return instance

Expand Down

0 comments on commit 462b26a

Please sign in to comment.