Skip to content

Commit

Permalink
fix(lint): Update lint II
Browse files Browse the repository at this point in the history
  • Loading branch information
flooie committed Dec 29, 2023
1 parent 57ee783 commit 43eb413
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion courts_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ def find_court_ids_by_name(
# Add validation for location if provided.
if location and court_location != location:
continue
if strip_punc(court_str.lower()) == strip_punc(court["name"].lower()):
if strip_punc(court_str.lower()) == strip_punc(
court["name"].lower()
):
matches.append((court_str, court["id"]))

matched_strings = [m[0] for m in matches]
Expand Down

0 comments on commit 43eb413

Please sign in to comment.