Skip to content

Commit cea1693

Browse files
Add __init__.py
1 parent b608010 commit cea1693

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

doc/data/messages/c/cyclic-import/bad/__init__.py

Whitespace-only changes.

doc/data/messages/c/cyclic-import/bad/bad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ def count_to_one():
33

44

55
def count_to_three():
6-
from .bad2 import count_to_two # [cyclic-import]
6+
from .bad2 import count_to_two # another cyclic-import
77

88
return count_to_two() + 1

doc/data/messages/c/cyclic-import/bad/bad2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .bad import count_to_one
1+
from .bad import count_to_one # [cyclic-import]
22

33

44
def count_to_two():

0 commit comments

Comments
 (0)