Skip to content

Commit

Permalink
Merge pull request #986 from Capsize-Games/devastator
Browse files Browse the repository at this point in the history
Devastator
  • Loading branch information
w4ffl35 authored Jan 22, 2025
2 parents 1ea7a18 + 206313e commit 7c87d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/airunner/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ def main():
engine = create_engine("sqlite:///" + os.path.join(base_dir, "airunner.db"))
session = scoped_session(sessionmaker(bind=engine))
application_settings = session.query(ApplicationSettings).first()
if application_settings.run_setup_wizard or True:
if application_settings.run_setup_wizard:
from airunner.app_installer import AppInstaller
AppInstaller()
else:
App(defendatron=facehuggershield.huggingface.defendatron)
App()


if __name__ == "__main__":
Expand Down

0 comments on commit 7c87d07

Please sign in to comment.