Skip to content

Commit d86120b

Browse files
committed
Lint
1 parent b8ee2d2 commit d86120b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python-import/cyclical_imports/yang.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yang.py
22

3-
print(f"Hello from yang")
3+
print("Hello from yang")
44
import yin # noqa
55

66
number = 24
@@ -11,4 +11,4 @@ def combine():
1111

1212

1313
print(f"yin and yang combined is {combine()}")
14-
print(f"Goodbye from yang")
14+
print("Goodbye from yang")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yin.py
22

3-
print(f"Hello from yin")
3+
print("Hello from yin")
44
number = 42
55

66

@@ -10,4 +10,4 @@ def combine():
1010
return number + yang.number
1111

1212

13-
print(f"Goodbye from yin")
13+
print("Goodbye from yin")

0 commit comments

Comments
 (0)