1
0
Fork 0

fixed imports

This commit is contained in:
Kim, Jimin 2022-03-14 13:50:00 +09:00
parent 9e41ae4e5a
commit 51e058e74a
7 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
from ...constants import tmp_dir
from src.constants import tmp_dir
from src.util import pamac_install, smart_copy
from os import makedirs

View file

@ -1,5 +1,5 @@
from src.util import flatpak_install, smart_copy
from ...constants import tmp_dir
from src.constants import tmp_dir
name = "Browsers"
post_install = ["restore onetab"]

View file

@ -1,6 +1,6 @@
from src.util import flatpak_install, pamac_install, smart_copy
from ...constants import tmp_dir
from ... import log
from src.constants import tmp_dir
from src import log
from os import system
name = "Discord"

View file

@ -1,5 +1,5 @@
from src.util import flatpak_install, smart_copy
from ...constants import tmp_dir
from src.constants import tmp_dir
from os import system

View file

@ -1,5 +1,5 @@
from src.util import pamac_install, smart_mkdir, download, unzip
from ...constants import tmp_dir
from src.constants import tmp_dir
from shutil import rmtree, move
from os import remove, system
from os.path import exists

View file

@ -1,5 +1,5 @@
from src.util import pamac_install, load_dconf
from ... import log
from src import log
name = "Gnome extensions"

View file

@ -1,6 +1,6 @@
from src.util import pamac_install, smart_copy
from ...constants import tmp_dir
from ... import log
from src.constants import tmp_dir
from src import log
from os.path import isdir
from os import system