Clean up comments a bit
This commit is contained in:
parent
8fc91c4f18
commit
608bada172
|
|
@ -7,15 +7,14 @@ is_top_level_profile = True
|
||||||
def _prep_function(*args, **kwargs):
|
def _prep_function(*args, **kwargs):
|
||||||
"""
|
"""
|
||||||
Magic function called by the importing installer
|
Magic function called by the importing installer
|
||||||
before continuing any further. It also avoids executing any
|
before continuing any further. For minimal install,
|
||||||
other code in this stage. So it's a safe way to ask the user
|
we don't need to do anything special here, but it
|
||||||
for more input before any other installer steps start.
|
needs to exist and return True.
|
||||||
"""
|
"""
|
||||||
return True # Do nothing here for now
|
return True # Do nothing and just return True
|
||||||
|
|
||||||
if __name__ == 'minimal':
|
if __name__ == 'minimal':
|
||||||
"""
|
"""
|
||||||
This "profile" is a meta-profile.
|
This "profile" is a meta-profile.
|
||||||
It is used for a custom minimal installation, without any desktop-specific packages.
|
It is used for a custom minimal installation, without any desktop-specific packages.
|
||||||
"""
|
"""
|
||||||
# Do nothing here for now
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue