misikoff commited on
Commit
a6f83b9
1 Parent(s): 9cb9eef

fix: typos

Browse files
Files changed (1) hide show
  1. zillow.py +9 -11
zillow.py CHANGED
@@ -347,20 +347,18 @@ class Zillow(datasets.GeneratorBasedBuilder):
347
  "Metro": data["Metro"],
348
  "County": data["County"],
349
  "Date": data["Date"],
350
- "Month Over Month % (Smoothed)": data[
351
- "Month Over Month % (Smoothed)"
352
  ],
353
- "Quarter Over Quarter % (Smoothed)": data[
354
- "Quarter Over Quarter % (Smoothed)"
355
  ],
356
- "Year Over Year % (Smoothed)": data[
357
- "Year Over Year % (Smoothed)"
358
  ],
359
- "Month Over Month % (Raw)": data["Month Over Month % (Raw)"],
360
- "Quarter Over Quarter % (Raw)": data[
361
- "Quarter Over Quarter % (Raw)"
362
- ],
363
- "Year Over Year % (Raw)": data["Year Over Year % (Raw)"],
364
  }
365
  elif self.config.name == "new_construction":
366
  yield key, {
 
347
  "Metro": data["Metro"],
348
  "County": data["County"],
349
  "Date": data["Date"],
350
+ "Month Over Month % (Smoothed) (Seasonally Adjusted)": data[
351
+ "Month Over Month % (Smoothed) (Seasonally Adjusted)"
352
  ],
353
+ "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": data[
354
+ "Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)"
355
  ],
356
+ "Year Over Year % (Smoothed) (Seasonally Adjusted)": data[
357
+ "Year Over Year % (Smoothed) (Seasonally Adjusted)"
358
  ],
359
+ "Month Over Month %": data["Month Over Month %"],
360
+ "Quarter Over Quarter %": data["Quarter Over Quarter %"],
361
+ "Year Over Year %": data["Year Over Year %"],
 
 
362
  }
363
  elif self.config.name == "new_construction":
364
  yield key, {