We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4c97e commit 1ee5ba6Copy full SHA for 1ee5ba6
1 file changed
src/opengeodeweb_back/app.py
@@ -155,7 +155,7 @@ def run_server(app: Flask) -> None:
155
app.config.update(UPLOAD_FOLDER=args.upload_folder_path)
156
app.config.update(MINUTES_BEFORE_TIMEOUT=args.timeout)
157
flask_cors.CORS(app, origins=args.allowed_origins)
158
- print(f"{args=}", flush=True, sep="\n")
+ print(f"{args=}", flush=True)
159
160
db_filename: str = app.config.get("DATABASE_FILENAME") or "project.db"
161
db_path = os.path.join(str(args.data_folder_path), db_filename)
0 commit comments