Put define_os after self.hide_commands

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-04 15:22:28 +02:00
parent ef27e5f85f
commit b8d4716206

View file

@ -29,11 +29,11 @@ class Installer:
self.conf = yaml.load(Path("configs.yml").text())
self.base_dir = Path.getcwd()
self.home = Path("~").expanduser()
self.operating_system = self.define_os()
self.force = force
self.first_install = first_install
self.update = update
self.hide_commands = hide_commands
self.operating_system = self.define_os()
def define_os(self) -> str:
"""Define what OS we are using."""