Skip to content

Commit 96c41bc

Browse files
committed
Silence an expected linter error
1 parent 5369c58 commit 96c41bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-isinstance/bool_int_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
print("bool") if isinstance(element, bool) else print("int")
1616

1717
for element in test_data:
18-
print("bool") if type(element) is bool else print("int")
18+
print("bool") if type(element) is bool else print("int") # noqa

0 commit comments

Comments
 (0)