CLN: Use np.nan directly rather than through pandas namespace

This commit is contained in:
Kelsey Jordahl
2013-11-21 18:26:15 -06:00
parent 79f0494c71
commit 69324f5d8b
+1 -1
View File
@@ -93,7 +93,7 @@ def _prepare_geocode_result(results):
p = Point(loc[1], loc[0])
if address is None:
address = pd.np.nan
address = np.nan
d['geometry'].append(p)
d['address'].append(address)