Skip to content

Commit 9e4d0b4

Browse files
committed
style
1 parent 8bcf92d commit 9e4d0b4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cads_broker/entry_points.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ def init_db(connection_string: Optional[str] = None, force: bool = False) -> Non
297297
connection_string: something like 'postgresql://user:password@netloc:port/dbname'
298298
force: if True, drop the database structure and build again from scratch
299299
"""
300-
database.logger.info("starting creation/updating of broker db structure and storage cache area.")
300+
database.logger.info(
301+
"starting creation/updating of broker db structure and storage cache area."
302+
)
301303
if not connection_string:
302304
dbsettings = config.ensure_settings(config.dbsettings)
303305
connection_string = dbsettings.connection_string
@@ -324,7 +326,9 @@ def init_db(connection_string: Optional[str] = None, force: bool = False) -> Non
324326
download_bucket, object_storage_url, **storage_kws
325327
)
326328
database.logger.info("successfully created the cache areas in the object storage.")
327-
database.logger.info("end of creation/updating of broker db structure and storage cache area.")
329+
database.logger.info(
330+
"end of creation/updating of broker db structure and storage cache area."
331+
)
328332

329333

330334
@app.command()

0 commit comments

Comments
 (0)