summaryrefslogtreecommitdiff
path: root/astroid/rebuilder.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-09-18 09:00:22 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-09-19 16:14:13 +0200
commit8d6d31bb8f9b44c6147522c49fa099c110b067f0 (patch)
tree2c013903e5d156d1021502d66d66d0bbf91f5808 /astroid/rebuilder.py
parent731d0515fcbc3c95813270021ec422d3114e13d6 (diff)
downloadastroid-git-8d6d31bb8f9b44c6147522c49fa099c110b067f0.tar.gz
[flake8] Set the max line length to 110 instead of 138
Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'astroid/rebuilder.py')
-rw-r--r--astroid/rebuilder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/astroid/rebuilder.py b/astroid/rebuilder.py
index 070b9db8..757feaa4 100644
--- a/astroid/rebuilder.py
+++ b/astroid/rebuilder.py
@@ -1332,7 +1332,8 @@ class TreeRebuilder:
)
# Prohibit a local save if we are in an ExceptHandler.
if not isinstance(parent, nodes.ExceptHandler):
- # mypy doesn't recognize that newnode has to be AssignAttr because it doesn't support ParamSpec
+ # mypy doesn't recognize that newnode has to be AssignAttr because it
+ # doesn't support ParamSpec
# See https://github.com/python/mypy/issues/8645
self._delayed_assattr.append(newnode) # type: ignore[arg-type]
else: