Skip to content

Commit 7c87d07

Browse files
authored
Merge pull request #986 from Capsize-Games/devastator
Devastator
2 parents 1ea7a18 + 206313e commit 7c87d07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/airunner/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ def main():
6464
engine = create_engine("sqlite:///" + os.path.join(base_dir, "airunner.db"))
6565
session = scoped_session(sessionmaker(bind=engine))
6666
application_settings = session.query(ApplicationSettings).first()
67-
if application_settings.run_setup_wizard or True:
67+
if application_settings.run_setup_wizard:
6868
from airunner.app_installer import AppInstaller
6969
AppInstaller()
7070
else:
71-
App(defendatron=facehuggershield.huggingface.defendatron)
71+
App()
7272

7373

7474
if __name__ == "__main__":

0 commit comments

Comments
 (0)