From 00f918ea177108b975e13eeee698e878a7c36c9c Mon Sep 17 00:00:00 2001 From: Kevin Rode Date: Thu, 7 Jan 2021 20:47:35 -0500 Subject: [PATCH] fuzzy search not searching team #11 --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index 17da3af..b90e7ce 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1293,6 +1293,6 @@ def get_team_fuzzy_search(team_name): teams = games.search_team(team_name.lower()) if len(teams) == 1: team = teams[0] - return + return team client.run(config()["token"])