summaryrefslogtreecommitdiff
path: root/__main__.py
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-13 21:01:55 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-13 21:01:55 +0200
commitb12c97653c2ee004292b0fdfd770a2c59451854b (patch)
tree558d86421b118290ab68743785fd84e6208b17cd /__main__.py
parent30ee34f106c5052cf0a60361d3220427b5753557 (diff)
Linting rest of the files and adding pylint to GHA.
Diffstat (limited to '__main__.py')
-rw-r--r--__main__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/__main__.py b/__main__.py
new file mode 100644
index 0000000..0eceaa0
--- /dev/null
+++ b/__main__.py
@@ -0,0 +1,5 @@
+""" __main__.py - Tästä suoritus alkaa """
+from app import App
+
+app = App()
+app.run()