Launcher: add ModuleUpdate
This commit is contained in:
parent
cc8ce32c61
commit
6d6111de2a
18
Launcher.py
18
Launcher.py
|
@ -10,16 +10,20 @@ Scroll down to components= to add components to the launcher as well as setup.py
|
||||||
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
from os.path import isfile
|
|
||||||
import sys
|
|
||||||
from typing import Iterable, Sequence, Callable, Union, Optional
|
|
||||||
import subprocess
|
|
||||||
import itertools
|
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 shlex
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
from enum import Enum, auto
|
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():
|
def open_host_yaml():
|
||||||
|
|
Loading…
Reference in New Issue