X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=juju%2Fclient%2Fclient.py;h=2721d07f9bdc9a909c9514a8f3841e688a240369;hb=b8a8281b1785358bd5632a119c016f21811172c6;hp=89b52487664040baabcf5ae6914e13886682660f;hpb=dcdf82bbc1ef310379f746518b2dd3b006353cb3;p=osm%2FN2VC.git diff --git a/juju/client/client.py b/juju/client/client.py index 89b5248..2721d07 100644 --- a/juju/client/client.py +++ b/juju/client/client.py @@ -1,11 +1,10 @@ '''Replace auto-generated classes with our own, where necessary. ''' -from . import _client, _definitions, overrides - +from . import _client, _definitions, overrides # isort:skip for o in overrides.__all__: - if not "Facade" in o: + if "Facade" not in o: # Override stuff in _definitions, which is all imported # into _client. We Monkey patch both the original class and # the ref in _client (import shenanigans are fun!) @@ -31,4 +30,4 @@ for o in overrides.__patches__: if not a.startswith('_'): setattr(c_type, a, getattr(o_type, a)) -from ._client import * # noqa +from ._client import * # noqa, isort:skip