Skip to content
Snippets Groups Projects
Commit 8fb20cc4 authored by gyulaid's avatar gyulaid
Browse files

pep8 fix

parent 50a56215
Branches
Tags
No related merge requests found
# flake8: noqa F401
from .cli import App
from .jobparser import Job, JobParser
from .exceptions import NonZeroRetcode
......
......@@ -71,6 +71,7 @@ class App:
print(f"Step {step} not found in {args.input}")
exit(1)
def main():
pathToScriptDir = os.path.dirname(os.path.realpath(__file__))
repoDir = os.path.join(pathToScriptDir, "..")
......@@ -86,5 +87,6 @@ def main():
exit(1)
app.run(args, repoDir)
if __name__ == "__main__":
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment