summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/misplaced-format-function
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/m/misplaced-format-function')
-rw-r--r--doc/data/messages/m/misplaced-format-function/bad.py2
-rw-r--r--doc/data/messages/m/misplaced-format-function/good.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/data/messages/m/misplaced-format-function/bad.py b/doc/data/messages/m/misplaced-format-function/bad.py
index 0bd172369..bc40bba4d 100644
--- a/doc/data/messages/m/misplaced-format-function/bad.py
+++ b/doc/data/messages/m/misplaced-format-function/bad.py
@@ -1 +1 @@
-print('Value: {}').format('Car') # [misplaced-format-function]
+print("Value: {}").format("Car") # [misplaced-format-function]
diff --git a/doc/data/messages/m/misplaced-format-function/good.py b/doc/data/messages/m/misplaced-format-function/good.py
index 809dcf974..8b31d5cf5 100644
--- a/doc/data/messages/m/misplaced-format-function/good.py
+++ b/doc/data/messages/m/misplaced-format-function/good.py
@@ -1 +1 @@
-print('Value: {}'.format('Car'))
+print("Value: {}".format("Car"))