Skip to content

Commit

Permalink
remove deprecated infer_types kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
solomon-negusse committed Dec 14, 2015
1 parent bef4670 commit 3c370be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulmo/cdec/historical/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_sensors(sensor_id=None):
"""

url = 'http://cdec.water.ca.gov/misc/senslist.html'
df = pd.read_html(url,infer_types=False,header=0)[0]
df = pd.read_html(url, header=0)[0]
df.set_index('Sensor No')

if sensor_id is None:
Expand Down

1 comment on commit 3c370be

@solomon-negusse
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

infer_types has been fully removed in 0.17.1 i think and tests were failing because of it.

Please sign in to comment.