summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-format-string-key/bad.py
blob: 4bbfcacbc985c33e7a96538f4ce9a9e699cec442 (plain)
1
2
3
4
5
6
7
# +1: [missing-format-string-key]
fruit_prices = """
Apple: %(apple_price)d ¤
Orange: %(orange_price)d ¤
""" % {
    "apple_price": 42
}