Browse Source

fix mixing example missing self parameter

Reported by Christopher Pelloux
0.9
Rossen Georgiev 8 years ago
parent
commit
33199c9410
  1. 2
      steam/client/mixins/__init__.py

2
steam/client/mixins/__init__.py

@ -29,7 +29,7 @@ Making custom mixing is just as simple.
.. code:: python
class MyMixin(object):
def __init__(*args, **kwargs):
def __init__(self, *args, **kwargs):
super(MyMixin, self).__init__(*args, **kwargs)
self.my_property = 42

Loading…
Cancel
Save