summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-12-27 00:04:56 +0100
committerGitHub <noreply@github.com>2022-12-27 00:04:56 +0100
commitdbb12524d75b7bb79215e9c3b6c20d15e9a7a7d6 (patch)
tree2481d32fe51765b1bbd6f126e38493159a234b5b /examples
parentcf5ea8a32bcdac0bd889f973272c59599b40af95 (diff)
downloadpylint-git-dbb12524d75b7bb79215e9c3b6c20d15e9a7a7d6.tar.gz
[pre-commit] Upgrade to black 23.1a1 with 2023's formatting (#7965)
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)