We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 377d931 commit 97be3bcCopy full SHA for 97be3bc
1 file changed
src/zeep/settings.py
@@ -76,6 +76,7 @@ def __call__(self, **options):
76
setattr(self._tls, key, value)
77
78
def __getattribute__(self, key):
79
- if key != "_tls" and hasattr(self._tls, key):
80
- return getattr(self._tls, key)
81
- return super().__getattribute__(key)
+ _tls = object.__getattribute__(self, "_tls")
+ if key != "_tls" and hasattr(_tls, key):
+ return getattr(_tls, key)
82
+ return object.__getattribute__(self, key)
0 commit comments