Skip to content

Commit 7c51a91

Browse files
authored
Merge pull request #1924 from youknowone/pylint
suppress new version of flake8 lint error for test
2 parents a48cd71 + 86dd0d6 commit 7c51a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/snippets/tuple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __eq__(self, x):
4444
b = (55, *a)
4545
assert b == (55, 1, 2, 3, 1)
4646

47-
assert () is ()
47+
assert () is () # noqa
4848

4949
a = ()
5050
b = ()

0 commit comments

Comments
 (0)