Skip to content

Commit b6eadcc

Browse files
committed
Fix linter issues
1 parent 140ed80 commit b6eadcc

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

python-namespace/globals_func.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
globals()["message"] = "Welcome to Real Python!"
22

3-
print(message)
4-
globals()["message"] = "Hello, World!"
5-
print(message)
3+
# print(message)
4+
# globals()["message"] = "Hello, World!"
5+
# print(message)

python-namespace/legb_3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def outer():
5-
x = "enclosing"
5+
# x = "enclosing"
66

77
def inner():
88
x = "local"

python-namespace/legb_4.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)