summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/confusing-with-statement/bad.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/c/confusing-with-statement/bad.py')
-rw-r--r--doc/data/messages/c/confusing-with-statement/bad.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/data/messages/c/confusing-with-statement/bad.py b/doc/data/messages/c/confusing-with-statement/bad.py
index d84288058..e6570a5aa 100644
--- a/doc/data/messages/c/confusing-with-statement/bad.py
+++ b/doc/data/messages/c/confusing-with-statement/bad.py
@@ -1,2 +1,2 @@
-with open('file.txt', 'w') as fh1, fh2: # [confusing-with-statement]
+with open("file.txt", "w") as fh1, fh2: # [confusing-with-statement]
pass