Skip to content

Commit

Permalink
Fix for downloading jobs and occupations taxonomy files
Browse files Browse the repository at this point in the history
  • Loading branch information
joserc87 committed Jul 9, 2024
1 parent c0c5400 commit 2fc8d2a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ravenpackapi/models/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ def _parse_lines(self):
yield headers
for line in iterator:
parsed_line = parse_csv_line(line)
(
rp_entity_id,
entity_type,
data_type,
data_value,
range_start,
range_end,
) = parsed_line
if self.store_in_memory:
(
rp_entity_id,
entity_type,
data_type,
data_value,
range_start,
range_end,
) = parsed_line
# we keep track of all the parsed entities just for rpa
if rp_entity_id not in self._entities:
self._entities[rp_entity_id] = entity = RpEntityReference(
Expand Down

0 comments on commit 2fc8d2a

Please sign in to comment.