Skip to content

Commit

Permalink
Fix G004 Logging statement uses f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba committed Dec 8, 2023
1 parent 8e22946 commit cf909da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dandiapi/api/services/metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def version_aggregate_assets_summary(version: Version) -> None:
modified=timezone.now(), metadata=updated_metadata
)
if updated_count == 0:
logger.info(f'Skipped updating assetsSummary for version {version.id}')
logger.info('Skipped updating assetsSummary for version %s', version.id)


def validate_version_metadata(*, version: Version) -> None:
Expand Down

0 comments on commit cf909da

Please sign in to comment.