Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/profiles.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-07 11:52:49 -0400
committerGitHub <noreply@github.com>2021-04-07 11:52:49 -0400
commite7a140248cff32ce89d0470dd6fdd4eee490694d (patch)
treea0c57f5249f2f96cfcf74c9f0ab01b5c1bddfa00 /archinstall/lib/profiles.py
parent99917807bd926185a8feb38185f0e4b09b3e0738 (diff)
Remove TODO line - it's functional and tested to work.
Diffstat (limited to 'archinstall/lib/profiles.py')
-rw-r--r--archinstall/lib/profiles.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index 5f69c8c6..7e76c891 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -196,7 +196,6 @@ class Profile(Script):
def is_top_level_profile(self):
with open(self.path, 'r') as source:
- # TODO: I imagine that there is probably a better way to write this.
source_data = source.read()
return 'top_level_profile = True' in source_data