J08nY / pyecsca

Attribute defined outside __init__ PYL-W0201
Anti-pattern
Minor
6 months ago3 years old
Attribute 'old_context' defined outside __init__
249
250    def __enter__(self) -> Optional[Context]:
251        global current  # This is OK, skipcq: PYL-W0603
252        self.old_context = current253        current = self.new_context
254        return current
255