We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c3a9a commit 60c50a1Copy full SHA for 60c50a1
1 file changed
python-string-interpolation/modulo_operator.py
@@ -13,7 +13,7 @@
13
print("Hello, %s!" % "Pythonista")
14
print("Hello, %s!" % ("Pythonista",))
15
16
-print("Interpolating a tuple: %s" % (1, 2, 3)) # Raises a TypeError
+print("Interpolating a tuple: %s" % (1, 2, 3)) # noqa (Raises a TypeError)
17
print("Interpolating a tuple: %s" % ((1, 2, 3),))
18
19
jane = {"name": "Jane", "job": "Python Dev"}
0 commit comments