aboutsummaryrefslogtreecommitdiff
path: root/cli.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-09-28 09:08:06 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2019-09-28 09:08:06 +0100
commitef8cd74e3c3f0bbaa459da707666ad2d28c02771 (patch)
treec3f6a70c8506228bfcfb16cea8b6a6af26c14555 /cli.py
parentadded entry point for pyinstaller (diff)
added pyinstaller stuff
Diffstat (limited to '')
-rw-r--r--cli.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli.py b/cli.py
index b493f58..0f67e43 100644
--- a/cli.py
+++ b/cli.py
@@ -1,4 +1,6 @@
+import sys
+
from datamaps.main import cli
if __name__ == '__main__':
- cli \ No newline at end of file
+ cli(sys.argv[1:]) \ No newline at end of file