From 24bfe88dc1e6887d5b8189718ece33bf720a64f4 Mon Sep 17 00:00:00 2001 From: Moon Date: Sat, 14 Jun 2025 05:57:01 +0900 Subject: [PATCH] rm obsolete print --- setup_db.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup_db.py b/setup_db.py index ae73c03..f1e9085 100644 --- a/setup_db.py +++ b/setup_db.py @@ -64,7 +64,7 @@ def get_db_path() -> str | DBNotFoundError: raise ConfigError(f'Could not find {config_path}') print(f'Running in "{env}" mode') - + config = ConfigParser() config.read(config_path) db_path = config['application']['DatabaseLocation'] @@ -94,7 +94,6 @@ def main(): return except KemoverseEnvUnset: print('Error: KEMOVERSE_ENV is either not set or has an invalid value.') - print('Please set KEMOVERSE_ENV to either "dev" or "prod" before running.') print(traceback.format_exc()) return