Skip to content

Commit

Permalink
Py3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
MechCoder committed Mar 11, 2016
1 parent 252b706 commit 6286122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_raw_scdb_data(scdb_path=None):
"SCDB_{0}_justiceCentered_Citation.csv".format(SCDB_RELEASE))

# Load and return
raw_scdb_df = pandas.read_csv(scdb_path)
raw_scdb_df = pandas.read_csv(scdb_path, encoding = "ISO-8859-1")

# Get outcome data
outcome_map = get_outcome_map()
Expand Down

0 comments on commit 6286122

Please sign in to comment.