Skip to content

Commit

Permalink
Format applied
Browse files Browse the repository at this point in the history
  • Loading branch information
kkalinowski-reef committed Dec 20, 2023
1 parent 42e1430 commit f392bc0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion b2/console_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,9 @@ def _print_download_info(
self, downloaded_file: DownloadedFile, output_filepath: pathlib.Path
) -> None:
download_version = downloaded_file.download_version
output_filepath_string = 'stdout' if output_filepath == STDOUT_FILEPATH else str(output_filepath.resolve())
output_filepath_string = 'stdout' if output_filepath == STDOUT_FILEPATH else str(
output_filepath.resolve()
)
self._print_file_attribute('File name', download_version.file_name)
self._print_file_attribute('File id', download_version.id_)
self._print_file_attribute('Output file path', output_filepath_string)
Expand Down

0 comments on commit f392bc0

Please sign in to comment.