summaryrefslogtreecommitdiff
path: root/doc/data/messages/f/format-combined-specification/good.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/f/format-combined-specification/good.py')
-rw-r--r--doc/data/messages/f/format-combined-specification/good.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/data/messages/f/format-combined-specification/good.py b/doc/data/messages/f/format-combined-specification/good.py
index 542b77507..8aaab67f2 100644
--- a/doc/data/messages/f/format-combined-specification/good.py
+++ b/doc/data/messages/f/format-combined-specification/good.py
@@ -1,3 +1,3 @@
-print('{0} {1}'.format('hello', 'world'))
+print("{0} {1}".format("hello", "world"))
# or
-print('{} {}'.format('hello', 'world'))
+print("{} {}".format("hello", "world"))