Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-07 11:54:10 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-08 09:51:11 -0400
commit608bada172ca0504b8aa7667e876f87d10449deb (patch)
treeda9307d3ca6fa4e9b8f01fd275259ade0d221c31
parent8fc91c4f18647ea2734b87b81cb5835ff6ad0c87 (diff)
Clean up comments a bit
-rw-r--r--profiles/minimal.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/profiles/minimal.py b/profiles/minimal.py
index 26a3c75c..79821a89 100644
--- a/profiles/minimal.py
+++ b/profiles/minimal.py
@@ -7,15 +7,14 @@ is_top_level_profile = True
def _prep_function(*args, **kwargs):
"""
Magic function called by the importing installer
- before continuing any further. It also avoids executing any
- other code in this stage. So it's a safe way to ask the user
- for more input before any other installer steps start.
+ before continuing any further. For minimal install,
+ we don't need to do anything special here, but it
+ needs to exist and return True.
"""
- return True # Do nothing here for now
+ return True # Do nothing and just return True
if __name__ == 'minimal':
"""
This "profile" is a meta-profile.
It is used for a custom minimal installation, without any desktop-specific packages.
"""
- # Do nothing here for now