Skip to content

Commit

Permalink
fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
bugsz committed Jan 25, 2024
1 parent 2ffb617 commit b9b7423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fix_missing_episodes_with_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_all_episodes(tags: List[str] = []) -> List[Tuple[EpisodeLog, str]]:
print("Using tag list: ", tags)
episode_pks: List[Tuple[(str, str)]] = []
for tag in tags:
ep_list = list(EpisodeLog.find(EpisodeLog.tag == tag).all()) # type: ignore
ep_list = list(EpisodeLog.find(EpisodeLog.tag == tag).all())
episode_pks += [(ep.pk, ep.tag) for ep in ep_list] # type: ignore

all_episodes = []
Expand Down

0 comments on commit b9b7423

Please sign in to comment.