Skip to content

Commit

Permalink
IN: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Dec 17, 2024
1 parent 52d067b commit 9c04295
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scrapers/in/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,9 @@ def scrape(self, session=None):
action_type.append("passage")

# Identify related committee
committee_matches = re.search(committee_name_match_regex, action_desc, re.IGNORECASE)
committee_matches = re.search(
committee_name_match_regex, action_desc, re.IGNORECASE
)
if committee_matches:
committee = committee_matches[1].strip()

Expand Down

0 comments on commit 9c04295

Please sign in to comment.