From 33199c941020ea213edbc55cd341b4ff3c8a50e5 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 3 Nov 2017 19:13:50 +0000 Subject: [PATCH] fix mixing example missing self parameter Reported by Christopher Pelloux --- steam/client/mixins/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/mixins/__init__.py b/steam/client/mixins/__init__.py index c2a22c1..694fbaa 100644 --- a/steam/client/mixins/__init__.py +++ b/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