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 b8ee2d2 commit d86120bCopy full SHA for d86120b
python-import/cyclical_imports/yang.py
@@ -1,6 +1,6 @@
1
# yang.py
2
3
-print(f"Hello from yang")
+print("Hello from yang")
4
import yin # noqa
5
6
number = 24
@@ -11,4 +11,4 @@ def combine():
11
12
13
print(f"yin and yang combined is {combine()}")
14
-print(f"Goodbye from yang")
+print("Goodbye from yang")
python-import/cyclical_imports/yin.py
# yin.py
-print(f"Hello from yin")
+print("Hello from yin")
number = 42
@@ -10,4 +10,4 @@ def combine():
10
return number + yang.number
-print(f"Goodbye from yin")
+print("Goodbye from yin")
0 commit comments