Reverting fuzzy select
This commit is contained in:
parent
14e4b5db6f
commit
6ebea65a93
|
@ -292,7 +292,7 @@ def search_teams(search_string):
|
||||||
conn = create_connection()
|
conn = create_connection()
|
||||||
if conn is not None:
|
if conn is not None:
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
c.execute("SELECT team_json_string FROM teams WHERE name LIKE ?",(re.sub('[^A-Za-z0-9 %]+', '', f"%{search_string}%"),))
|
c.execute("SELECT team_json_string FROM teams WHERE name LIKE ?",(f"%{search_string}%"),)
|
||||||
team_json_strings = c.fetchall()
|
team_json_strings = c.fetchall()
|
||||||
conn.close()
|
conn.close()
|
||||||
return team_json_strings
|
return team_json_strings
|
||||||
|
|
|
@ -135,22 +135,14 @@ class StartGameCommand(Command):
|
||||||
|
|
||||||
innings = None
|
innings = None
|
||||||
try:
|
try:
|
||||||
team_name1 = command.split("\n")[1].strip()
|
team1 = games.get_team(command.split("\n")[1])
|
||||||
team1 = get_team_fuzzy_search(team_name1)
|
team2 = games.get_team(command.split("\n")[2])
|
||||||
print(team_name1)
|
|
||||||
|
|
||||||
team_name2 = command.split("\n")[2].strip()
|
|
||||||
team2 = get_team_fuzzy_search(team_name2)
|
|
||||||
print(team_name2)
|
|
||||||
|
|
||||||
innings = int(command.split("\n")[3])
|
innings = int(command.split("\n")[3])
|
||||||
except IndexError:
|
except IndexError:
|
||||||
try:
|
try:
|
||||||
team_name1 = command.split("\n")[1].strip()
|
team1 = games.get_team(command.split("\n")[1])
|
||||||
team1 = get_team_fuzzy_search(team_name1)
|
team2 = games.get_team(command.split("\n")[2])
|
||||||
|
innings = None
|
||||||
team_name2 = command.split("\n")[2].strip()
|
|
||||||
team2 = get_team_fuzzy_search(team_name2)
|
|
||||||
except IndexError:
|
except IndexError:
|
||||||
await msg.channel.send("We need at least three lines: startgame, away team, and home team are required. Optionally, the number of innings can go at the end, if you want a change of pace.")
|
await msg.channel.send("We need at least three lines: startgame, away team, and home team are required. Optionally, the number of innings can go at the end, if you want a change of pace.")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue
Block a user