Skip to content

Commit 268853a

Browse files
committed
autoformat
1 parent 725bfe3 commit 268853a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/aws_encryption_sdk/streaming_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -866,9 +866,7 @@ def _read_bytes(self, b):
866866

867867
buffer_length = len(self.output_buffer)
868868
if 0 <= b <= buffer_length:
869-
_LOGGER.debug(
870-
"%s bytes requested less than or equal to current output buffer size %s", b, len(self.output_buffer)
871-
)
869+
_LOGGER.debug("%d bytes requested less than or equal to current output buffer size %d", b, buffer_length)
872870
return
873871

874872
if self._header.content_type == ContentType.FRAMED_DATA:

0 commit comments

Comments
 (0)