Skip to content

Commit 8312831

Browse files
committed
fix python linting errors
1 parent 2786831 commit 8312831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extra_tests/snippets/syntax_del.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_del_panic():
3333
# see https://github.com/RustPython/RustPython/issues/4910
3434

3535
def f():
36-
del l
36+
del b # noqa
3737

38-
l = 'a'
38+
b = 'a'
3939
assert_raises(UnboundLocalError, f)

0 commit comments

Comments
 (0)