Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonye Jack committed Aug 16, 2020
1 parent 05a404a commit 04405cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_subscription/mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __new__(mcs, name, bases, attrs):
del base['_subscription']
_subscription = ModelSubscription() # type: ignore
attrs['_subscription'] = _subscription
return super(SubscriptionMeta, mcs).__new__(name, bases, attrs)
return super(SubscriptionMeta, mcs).__new__(mcs, name, bases, attrs)


@six.add_metaclass(SubscriptionMeta)
Expand Down

0 comments on commit 04405cc

Please sign in to comment.