Skip to content

Commit a172799

Browse files
committed
Update
1 parent ba5a190 commit a172799

1 file changed

Lines changed: 0 additions & 23 deletions

File tree

archinstall/lib/profile/profiles_handler.py

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -75,29 +75,6 @@ def parse_profile_config(self, profile_config: ProfileSerialization) -> Profile
7575
else:
7676
self._import_profile_from_url(url_path)
7777

78-
# if custom := profile_config.get('custom', None):
79-
# from archinstall.default_profiles.custom import CustomTypeProfile
80-
# custom_types = []
81-
#
82-
# for entry in custom:
83-
# custom_types.append(
84-
# CustomTypeProfile(
85-
# entry['name'],
86-
# entry['enabled'],
87-
# entry.get('packages', []),
88-
# entry.get('services', [])
89-
# )
90-
# )
91-
#
92-
# self.remove_custom_profiles(custom_types)
93-
# self.add_custom_profiles(custom_types)
94-
#
95-
# # this doesn't mean it's actual going to be set as a selection
96-
# # but we are simply populating the custom profile with all
97-
# # possible custom definitions
98-
# if custom_profile := self.get_profile_by_name('Custom'):
99-
# custom_profile.set_current_selection(custom_types)
100-
10178
if main := profile_config.get('main', None):
10279
profile = self.get_profile_by_name(main) if main else None
10380

0 commit comments

Comments
 (0)