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 217f222 commit 3e1b12dCopy full SHA for 3e1b12d
bunq/sdk/json/converter.py
@@ -616,13 +616,13 @@ def create_initializer(initializer_function):
616
:type initializer_function: callable
617
"""
618
619
- is_initialized = False
+ is_disposed = False
620
621
- if not is_initialized:
+ if not is_disposed:
622
initializer_function()
623
- is_initialized = True
+ is_disposed = True
624
625
- yield is_initialized
+ yield is_disposed
626
627
628
def register_adapter(target_class, adapter):
0 commit comments