Skip to content

Commit 8eb6581

Browse files
committed
Outstanding file fixes
1 parent e46e5b5 commit 8eb6581

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

python-isinstance/consolidation2_solution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from abc import ABC
22
from collections.abc import Callable
3+
34
from balls_v2 import AmericanFootBall, PoolBall
45

56
eight_ball = PoolBall("black", 8)

python-isinstance/customiterable_one_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from customiterables import CustomIterableOne
21
from collections.abc import Iterable
32

3+
from customiterables import CustomIterableOne
44

55
for number in CustomIterableOne(4):
66
print(number)

python-isinstance/customiterable_three_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from collections.abc import Iterable
2+
23
from customiterables import CustomIterableThree
34

45
for number in CustomIterableThree(4):

python-isinstance/customiterable_two_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from collections.abc import Iterable
2+
23
from customiterables import CustomIterableTwo
34

45
for number in CustomIterableTwo(4):

python-isinstance/iter_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from customiterables import CustomIterableOne, CustomIterableTwo, CustomIterableThree
2-
1+
from customiterables import (CustomIterableOne, CustomIterableThree,
2+
CustomIterableTwo)
33

44
iter(CustomIterableOne(4))
55

python-isinstance/type_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from balls import Ball, FootBall, PoolBall
1+
from balls import Ball, PoolBall
22

33
eight_ball = PoolBall("black", 8)
44

0 commit comments

Comments
 (0)