Fix typo in flake8 command in Linter class.

This commit is contained in:
Paul Gauthier 2024-05-18 19:50:11 -07:00
parent f2b197a69f
commit e4c1653b2e

View file

@ -86,7 +86,7 @@ class Linter:
return res
fatal = "E9,F821,F823,F831,F406,F407,F701,F702,F704,F706"
flake8 = f"flake8a --select={fatal} --show-source"
flake8 = f"flake8 --select={fatal} --show-source"
try:
return self.run_cmd(flake8, rel_fname, code)