Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Nov 26, 2024
1 parent 220d6c1 commit 957189b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/aniworld/extractors/hanime/hanime.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,12 +379,10 @@ def hanime(url: str = None):
sort_order = args.sort_order

if sort_by not in SORT_OPTS_MAP:
print(f'Unknown sort method "{
args.sort_by}", using sort by title')
print(f'Unknown sort method "{args.sort_by}", using sort by title')
sort_by = "title"
if sort_order not in SORT_ORDER_MAP:
print(f'Unknown sort order "{
args.sort_order}", using ascending order')
print(f'Unknown sort order "{args.sort_order}", using ascending order')
sort_order = "ascending"

search_kwargs = {
Expand Down

0 comments on commit 957189b

Please sign in to comment.