From 89f70fa3ff29a2fe6208d95c8e7d9a2fffe176ae Mon Sep 17 00:00:00 2001 From: Thomas Sundvoll Date: Mon, 3 Jun 2024 21:50:08 +0200 Subject: [PATCH] Reintroduce main.py for backwards compability this can be removed in next minor bump of version (1.20.0) --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 00000000..852047f3 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +# This file is added for backwards-compability for versions 1.19.2 and older. +# It can be removed in the next minor bump (1.20.0) + +from isar.script import start + +if __name__ == "__main__": + start()