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:
William S Fulton 2022-07-31 08:32:40 +01:00
commit 842ae379aa
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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"