X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=modules%2Flibjuju%2Fjuju%2Fclient%2Fclient.py;h=2721d07f9bdc9a909c9514a8f3841e688a240369;hp=89b52487664040baabcf5ae6914e13886682660f;hb=19c5cfca317615597be6bf1051e9d2fa903adb97;hpb=68858c1915122c2dbc8999a5cd3229694abf5f3a diff --git a/modules/libjuju/juju/client/client.py b/modules/libjuju/juju/client/client.py index 89b5248..2721d07 100644 --- a/modules/libjuju/juju/client/client.py +++ b/modules/libjuju/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