Skip to content

Commit

Permalink
Fixing a class member name I missed earlier in BaseDataHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnapolitano committed Nov 20, 2024
1 parent 720a6cc commit ec5e072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elexmodel/handlers/data/BaseDataHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_data(self):
preprocessed_data = StringIO(csv_data)
else:
# read data as a filepath
preprocessed_data = self.local_file_path
preprocessed_data = self.file_path

data = pd.read_csv(preprocessed_data, dtype={"geographic_unit_fips": str, "county_fips": str, "district": str})
return self.load_data(data)
Expand Down

0 comments on commit ec5e072

Please sign in to comment.