Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 11:42:32 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 11:45:36 -0400
commitacb754ff2edee96d3dc0c6ca29abd0c60a1a5ace (patch)
tree9d334e2774e68e37596e739cd4ea644fbf66553e
parentf1051d95199c267d1e8d5730472bfd2839cd71fa (diff)
Try to remove some unused imports
-rw-r--r--profiles/deepin.py2
-rw-r--r--profiles/desktop.py2
-rw-r--r--profiles/i3.py2
-rw-r--r--profiles/kde.py2
-rw-r--r--profiles/minimal.py2
-rw-r--r--profiles/server.py2
-rw-r--r--profiles/xorg.py1
7 files changed, 5 insertions, 8 deletions
diff --git a/profiles/deepin.py b/profiles/deepin.py
index a4778b0d..ebe730e2 100644
--- a/profiles/deepin.py
+++ b/profiles/deepin.py
@@ -1,6 +1,6 @@
# A desktop environment using "Deepin".
-import archinstall, os
+import archinstall
is_top_level_profile = False
diff --git a/profiles/desktop.py b/profiles/desktop.py
index 84c1ac06..67514a97 100644
--- a/profiles/desktop.py
+++ b/profiles/desktop.py
@@ -1,6 +1,6 @@
# A desktop environment selector.
-import archinstall, os
+import archinstall
is_top_level_profile = True
diff --git a/profiles/i3.py b/profiles/i3.py
index 1972ba59..418749c0 100644
--- a/profiles/i3.py
+++ b/profiles/i3.py
@@ -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
diff --git a/profiles/kde.py b/profiles/kde.py
index 66625074..cdb6a41a 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -1,6 +1,6 @@
# A desktop environment using "KDE".
-import archinstall, os
+import archinstall
is_top_level_profile = False
diff --git a/profiles/minimal.py b/profiles/minimal.py
index 8af06a3a..13cfd05a 100644
--- a/profiles/minimal.py
+++ b/profiles/minimal.py
@@ -1,7 +1,5 @@
# Used to do a minimal install
-import archinstall, os
-
is_top_level_profile = True
diff --git a/profiles/server.py b/profiles/server.py
index 36bfd3ab..ff7b2179 100644
--- a/profiles/server.py
+++ b/profiles/server.py
@@ -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
diff --git a/profiles/xorg.py b/profiles/xorg.py
index e7cf00d0..34599468 100644
--- a/profiles/xorg.py
+++ b/profiles/xorg.py
@@ -1,6 +1,5 @@
# A system with "xorg" installed
-import os
import archinstall
is_top_level_profile = True