GHA: Fix for pycodestyle check in examples
E275 missing whitespace after keyword For pycodestyle 2.9.0 released on 30 July 2022.
This commit is contained in:
parent
3fa8e1f38f
commit
842ae379aa
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ import pkg1.foo
|
|||
|
||||
print(" Finished importing pkg1.foo")
|
||||
|
||||
if not(pkg1.foo.count() == 3):
|
||||
if not pkg1.foo.count() == 3:
|
||||
raise RuntimeError("test failed")
|
||||
|
||||
commandline = sys.executable + " -m pkg1.foo"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import pkg1.foo
|
|||
|
||||
print(" Finished importing pkg1.foo")
|
||||
|
||||
if not(pkg1.foo.count() == 3):
|
||||
if not pkg1.foo.count() == 3:
|
||||
raise RuntimeError("test failed")
|
||||
|
||||
commandline = sys.executable + " -m pkg1.foo"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue