Skip to content

Commit

Permalink
Ruff Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkrellenstein committed Jul 2, 2024
1 parent 142c6d4 commit 5e0cf15
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions counterparty-core/counterpartycore/lib/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,9 +1203,7 @@ def catch_up(db, check_asset_conservation=True):
hours, remainder = divmod(duration_seconds, 3600)
minutes, seconds = divmod(remainder, 60)
formatted_duration = f"{hours}h {minutes}m {seconds}s"
logger.debug(
f"Parsed {parsed_blocks} blocks in {formatted_duration}."
)
logger.debug(f"Parsed {parsed_blocks} blocks in {formatted_duration}.")

# Refresh block count.
if util.CURRENT_BLOCK_INDEX == block_count:
Expand Down

0 comments on commit 5e0cf15

Please sign in to comment.