Skip to content

Commit d034dc3

Browse files
Remove Ian's comment
1 parent d0a06ec commit d034dc3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

python-isinstance/bool_int_test.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
for element in test_data:
1515
print("bool") if isinstance(element, bool) else print("int")
1616

17-
# Code commented out to appease RealPython linters
18-
# Remove comments before running these two lines of code.
19-
# for element in test_data:
20-
# print("bool") if type(element) is bool else print("int")
17+
18+
for element in test_data:
19+
print("bool") if type(element) is bool else print("int")

0 commit comments

Comments
 (0)