summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/custom_raw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/custom_raw.py b/examples/custom_raw.py
index 1cfeae3f9..090f87ea8 100644
--- a/examples/custom_raw.py
+++ b/examples/custom_raw.py
@@ -32,7 +32,7 @@ class MyRawChecker(BaseRawFileChecker):
the module's content is accessible via node.stream() function
"""
with node.stream() as stream:
- for (lineno, line) in enumerate(stream):
+ for lineno, line in enumerate(stream):
if line.rstrip().endswith("\\"):
self.add_message("backslash-line-continuation", line=lineno)