Skip to content

Commit f014d7b

Browse files
committed
Fix E502 newly detected
1 parent df428c0 commit f014d7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

didyoumean/didyoumean_re_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ def test_unbound_assignment(self):
161161
msgs = [
162162
# Python 2.6/2.7/3.2/3.3/3.4/3.5/../3.10/PyPy/PyPy3
163163
"local variable 'some_var' referenced before assignment",
164-
"free variable 'some_var' referenced before assignment " \
164+
"free variable 'some_var' referenced before assignment "
165165
"in enclosing scope",
166166
# Python 3.11
167-
"cannot access free variable 'some_var' where it is not " \
167+
"cannot access free variable 'some_var' where it is not "
168168
"associated with a value in enclosing scope",
169-
"cannot access local variable 'some_var' where it is not " \
169+
"cannot access local variable 'some_var' where it is not "
170170
"associated with a value",
171171
]
172172
groups = ('some_var',)

0 commit comments

Comments
 (0)