From 3d13baba9bc35b2c12778a5deb3aa5f3b286a5fa Mon Sep 17 00:00:00 2001 From: Elijah Date: Thu, 2 Nov 2023 16:07:26 +0000 Subject: [PATCH] fix precommit --- reflex/utils/prerequisites.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reflex/utils/prerequisites.py b/reflex/utils/prerequisites.py index f205b891a..d625ed016 100644 --- a/reflex/utils/prerequisites.py +++ b/reflex/utils/prerequisites.py @@ -530,7 +530,7 @@ def install_frontend_packages(packages: set[str]): [package_manager, "install", "--loglevel", "silly", *prefer_offline], cwd=constants.Dirs.WEB, shell=constants.IS_WINDOWS, - show_logs=show_logs + show_logs=show_logs, ) processes.show_status("Installing base frontend packages", process) @@ -547,7 +547,7 @@ def install_frontend_packages(packages: set[str]): ], cwd=constants.Dirs.WEB, shell=constants.IS_WINDOWS, - show_logs=show_logs + show_logs=show_logs, ) processes.show_status("Installing tailwind", process) @@ -556,7 +556,7 @@ def install_frontend_packages(packages: set[str]): [package_manager, "add", *packages, *prefer_offline], cwd=constants.Dirs.WEB, shell=constants.IS_WINDOWS, - show_logs=show_logs + show_logs=show_logs, ) processes.show_status( "Installing frontend packages from config and components", process @@ -703,8 +703,8 @@ def check_schema_up_to_date(): with model.Model.get_db_engine().connect() as connection: try: if model.Model.alembic_autogenerate( - connection=connection, - write_migration_scripts=False, + connection=connection, + write_migration_scripts=False, ): console.error( "Detected database schema changes. Run [bold]reflex db makemigrations[/bold] "