Skip to content

Commit

Permalink
reformat, add print
Browse files Browse the repository at this point in the history
  • Loading branch information
fthiery committed Jan 16, 2025
1 parent c90fab2 commit 4447b0c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/transfer_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def download_file(url, local_filename, verify=True):
f'Downloading {(100 * downloaded_size / total_size):.1f}%', end='\r'
)
f.write(chunk)
print('Download finished')
return local_filename


Expand Down Expand Up @@ -258,7 +259,10 @@ def get_personal_channel(msc_dest, speaker, subchannel_title, apply=False):
)

parser.add_argument(
'--root-channel', help='Optional root channel to move media into', type=str
'--root-channel',
help='Optional root channel to move media into',
type=str,
required=True,
)

parser.add_argument(
Expand Down

0 comments on commit 4447b0c

Please sign in to comment.