From 6d6111de2a91c66a73f81bc6ad4c6021ac9f2aee Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 27 Aug 2022 02:28:46 +0200 Subject: [PATCH] Launcher: add ModuleUpdate --- Launcher.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Launcher.py b/Launcher.py index 53032ea2..92f43cd2 100644 --- a/Launcher.py +++ b/Launcher.py @@ -10,16 +10,20 @@ Scroll down to components= to add components to the launcher as well as setup.py import argparse -from os.path import isfile -import sys -from typing import Iterable, Sequence, Callable, Union, Optional -import subprocess import itertools -from Utils import is_frozen, user_path, local_path, init_logging, open_filename, messagebox,\ - is_windows, is_macos, is_linux -from shutil import which import shlex +import subprocess +import sys from enum import Enum, auto +from os.path import isfile +from shutil import which +from typing import Iterable, Sequence, Callable, Union, Optional + +import ModuleUpdate +ModuleUpdate.update() + +from Utils import is_frozen, user_path, local_path, init_logging, open_filename, messagebox, \ + is_windows, is_macos, is_linux def open_host_yaml():