Skip to content

Commit d64492b

Browse files
committed
fix QueryEpisodeScheduleTool
1 parent 33d6c75 commit d64492b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/agent/tools/impl/query_episode_schedule.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ async def run(self, tmdb_id: int, season: int, episode_group: Optional[str] = No
7878
"vote_average": episode.vote_average,
7979
"still_path": episode.still_path,
8080
"episode_type": episode.episode_type,
81-
"season_number": episode.season_number,
82-
"crew": episode.crew if episode.crew else [],
83-
"guest_stars": episode.guest_stars if episode.guest_stars else []
81+
"season_number": episode.season_number
8482
}
8583
episode_list.append(episode_info)
8684

0 commit comments

Comments
 (0)