Revert "Update __init__.py"

This reverts commit 5664de6610.

The commit introduced a specific implementation of WheelClient.cmd()
that calls low(fun, low) method passing args as low argument that's
wrong, args and kwargs should be packed into low that should be a dict.
This commit is contained in:
Dmitry Kuzmenko 2015-10-19 16:17:00 +03:00 committed by rallytime
parent 72f0c106cf
commit 41536e55b9

View file

@ -121,6 +121,6 @@ class WheelClient(mixins.SyncClientMixin, mixins.AsyncClientMixin, object):
>>> wheel.cmd('key.finger', ['jerry'])
{'minions': {'jerry': '5d:f6:79:43:5e:d4:42:3f:57:b8:45:a8:7e:a4:6e:ca'}}
'''
return self.low(fun, kwarg)
Wheel = WheelClient # for backward-compat