fix: typos
Browse files
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 %
|
360 |
-
"Quarter Over Quarter %
|
361 |
-
|
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, {
|