We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ea7a18 + 206313e commit 7c87d07Copy full SHA for 7c87d07
src/airunner/main.py
@@ -64,11 +64,11 @@ def main():
64
engine = create_engine("sqlite:///" + os.path.join(base_dir, "airunner.db"))
65
session = scoped_session(sessionmaker(bind=engine))
66
application_settings = session.query(ApplicationSettings).first()
67
- if application_settings.run_setup_wizard or True:
+ if application_settings.run_setup_wizard:
68
from airunner.app_installer import AppInstaller
69
AppInstaller()
70
else:
71
- App(defendatron=facehuggershield.huggingface.defendatron)
+ App()
72
73
74
if __name__ == "__main__":
0 commit comments