Skip to content

Commit 60c50a1

Browse files
committed
Suppress a linter check after the final QA (#525)
1 parent 37c3a9a commit 60c50a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-string-interpolation/modulo_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
print("Hello, %s!" % "Pythonista")
1414
print("Hello, %s!" % ("Pythonista",))
1515

16-
print("Interpolating a tuple: %s" % (1, 2, 3)) # Raises a TypeError
16+
print("Interpolating a tuple: %s" % (1, 2, 3)) # noqa (Raises a TypeError)
1717
print("Interpolating a tuple: %s" % ((1, 2, 3),))
1818

1919
jane = {"name": "Jane", "job": "Python Dev"}

0 commit comments

Comments
 (0)