We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8438f07 commit f86b0f4Copy full SHA for f86b0f4
unpythonic/env.py
@@ -39,10 +39,10 @@ class env:
39
40
Context manager::
41
42
- with env(s="hello", orange="fruit", answer=42) as e2:
43
- ... # ...code that uses e2...
+ with env(s="hello", orange="fruit", answer=42) as e:
+ ... # ...code that uses e...
44
45
- When the `with` block exits, `e2` forgets all its bindings. The `e2`
+ When the `with` block exits, `e` forgets all its bindings. The `e`
46
instance itself will remain alive due to Python's scoping rules.
47
"""
48
# do not allow bindings that would break functionality.
0 commit comments