Skip to content

Commit

Permalink
Merge pull request #4974 from NewAgeAirbender/de_bills
Browse files Browse the repository at this point in the history
DE: check for long string instead of date on eff_date
  • Loading branch information
NewAgeAirbender authored Jun 28, 2024
2 parents 78e6a64 + 9d7fa3e commit dda960f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/de/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def scrape_bill(self, row, session):
else:
code_url = None

if "N/A" in eff_date or eff_date == "":
if "N/A" in eff_date or eff_date == "" or len(eff_date) > 9:
eff_date = None

if "N/A" in exp_date or exp_date == "":
Expand Down

0 comments on commit dda960f

Please sign in to comment.