Skip to content

Commit e2d5df5

Browse files
committed
Use f-string
1 parent bcd166a commit e2d5df5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

awscli/s3transfer/checksums.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ def combine_and_validate(self):
8080
f'combined checksum: {combined_b64}'
8181
)
8282
logger.debug(
83-
'Full object %s checksum validated: %s',
84-
self._algorithm,
85-
combined_b64,
83+
f'Full object {self._algorithm} checksum validated: {combined_b64}'
8684
)
8785

8886
@property

0 commit comments

Comments
 (0)