Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
scrazzz committed Aug 7, 2024
1 parent 6150d04 commit 0a9fb59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: pip install -U -r requirements.txt .[test]
run: pip install -U -r requirements.txt .[test] .[cli]

- name: Delete build directory
run: rm -rf build
Expand Down
2 changes: 1 addition & 1 deletion redgifs/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def download_gif(url: yarl.URL, quality: str, folder: Optional[str]):
client.download(gif_url, f'{folder}/{filename}')
else:
client.download(gif_url, f'{filename}')
click.echo('Download complete.')
click.echo('Download complete.')

def _dl_with_args(gif: GIF, quality: str, folder: Optional[str]):
gif_url = gif.urls.sd if quality == 'sd' else gif.urls.hd
Expand Down

0 comments on commit 0a9fb59

Please sign in to comment.