Try to remove some unused imports
This commit is contained in:
parent
f1051d9519
commit
acb754ff2e
|
|
@ -1,6 +1,6 @@
|
|||
# A desktop environment using "Deepin".
|
||||
|
||||
import archinstall, os
|
||||
import archinstall
|
||||
|
||||
is_top_level_profile = False
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# A desktop environment selector.
|
||||
|
||||
import archinstall, os
|
||||
import archinstall
|
||||
|
||||
is_top_level_profile = True
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Common package for i3, lets user select which i3 configuration they want.
|
||||
|
||||
import archinstall, os
|
||||
import archinstall
|
||||
|
||||
is_top_level_profile = False
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# A desktop environment using "KDE".
|
||||
|
||||
import archinstall, os
|
||||
import archinstall
|
||||
|
||||
is_top_level_profile = False
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
# Used to do a minimal install
|
||||
|
||||
import archinstall, os
|
||||
|
||||
is_top_level_profile = True
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Used to select various server application profiles on top of a minimal installation.
|
||||
|
||||
import archinstall, os, logging
|
||||
import archinstall, logging
|
||||
|
||||
is_top_level_profile = True
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
# A system with "xorg" installed
|
||||
|
||||
import os
|
||||
import archinstall
|
||||
|
||||
is_top_level_profile = True
|
||||
|
|
|
|||
Loading…
Reference in New Issue