Implement F631 (AssertTuple) (#99)

This commit is contained in:
Harutaka Kawamura
2022-09-04 21:39:49 +09:00
committed by GitHub
parent e2f46537fd
commit 312bfd8d2b
8 changed files with 61 additions and 0 deletions

4
resources/test/fixtures/F631.py vendored Normal file
View File

@@ -0,0 +1,4 @@
assert (False, "x")
assert (False,)
assert ()
assert True

View File

@@ -6,6 +6,7 @@ select = [
"F401",
"F403",
"F541",
"F631",
"F634",
"F704",
"F706",