summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-format-string-key/good.py
blob: 11b8567620112df8d7ffda6bbb47224e237e4af6 (plain)
1
2
3
4
5
6
7
fruit_prices = """
Apple: %(apple_price)d ¤
Orange: %(orange_price)d ¤
""" % {
    "apple_price": 42,
    "orange_price": 87,
}