Skip to content

Commit

Permalink
Ruff update has false positive, ignore lint error for now
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Sep 5, 2024
1 parent 78eba69 commit 006df93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/py/notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def evaluate(node, g, loop=False):
try:
for n in node.body:
yield from evaluate(n, g, loop)
except ExceptionGroup as e:
except ExceptionGroup as e: # noqa: F821
for n in node.handlers:
if n.name:
g[n.name] = e
Expand Down

0 comments on commit 006df93

Please sign in to comment.