Skip to content

Commit

Permalink
run make black
Browse files Browse the repository at this point in the history
  • Loading branch information
jfuss committed Jun 1, 2023
1 parent 16ed672 commit 85ab5d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions samcli/local/docker/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ def pull_image(self, image_name, tag=None, stream=None):

# io streams, especially StringIO, work only with unicode strings
stream_writer.write(
"\nFetching {}:{} Docker container image...".format(image_name, tag),
write_to_buffer=False
"\nFetching {}:{} Docker container image...".format(image_name, tag), write_to_buffer=False
)

# Each line contains information on progress of the pull. Each line is a JSON string
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/local/docker/test_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def test_must_pull_and_print_progress_dots(self):
call(".", write_to_buffer=False),
call(".", write_to_buffer=False),
call(".", write_to_buffer=False),
call("\n", write_to_buffer=False)
call("\n", write_to_buffer=False),
]

self.manager.pull_image(self.image_name, stream=stream)
Expand Down

0 comments on commit 85ab5d3

Please sign in to comment.