Skip to content

Commit

Permalink
Remove final exception
Browse files Browse the repository at this point in the history
  • Loading branch information
symroe committed Jan 25, 2024
1 parent ccd1b0f commit 53210e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def handle(self, *args, **options):
self.election = self.get_next_parl_election()
req = requests.get(options["sheet_url"])
req.raise_for_status()
raise ValueError("Still testing")
self.parse_csv(req.content.decode("utf8").splitlines())
# raise ValueError("Still testing")

def parse_csv(self, in_file):
csv_data = csv.DictReader(in_file)
Expand Down

0 comments on commit 53210e3

Please sign in to comment.