We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6846a13 commit 81bb644Copy full SHA for 81bb644
doc/data/messages/m/missing-format-string-key/bad.py
@@ -0,0 +1,7 @@
1
+# +1: [missing-format-string-key]
2
+fruit_prices = """
3
+Apple: %(apple_price)d ¤
4
+Orange: %(orange_price)d ¤
5
+""" % {
6
+ "apple_price": 42
7
+}
doc/data/messages/m/missing-format-string-key/details.rst
doc/data/messages/m/missing-format-string-key/good.py
@@ -1 +1,7 @@
-# This is a placeholder for correct code for this message.
+ "apple_price": 42,
+ "orange_price": 87,
0 commit comments