From dbb12524d75b7bb79215e9c3b6c20d15e9a7a7d6 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Tue, 27 Dec 2022 00:04:56 +0100 Subject: [pre-commit] Upgrade to black 23.1a1 with 2023's formatting (#7965) --- examples/custom_raw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') 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) -- cgit v1.2.1