fix: typos
Browse files
zillow.py
CHANGED
@@ -95,22 +95,25 @@ class Zillow(datasets.GeneratorBasedBuilder):
|
|
95 |
"County": datasets.Value(dtype="string", id="County"),
|
96 |
"Date": datasets.Value(dtype="string", id="Date"),
|
97 |
"Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
98 |
-
dtype="float32",
|
|
|
99 |
),
|
100 |
"Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
101 |
-
dtype="float32",
|
|
|
102 |
),
|
103 |
"Year Over Year % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
104 |
-
dtype="float32",
|
|
|
105 |
),
|
106 |
"Month Over Month %": datasets.Value(
|
107 |
-
dtype="float32", id="Month Over Month %
|
108 |
),
|
109 |
"Quarter Over Quarter %": datasets.Value(
|
110 |
-
dtype="float32", id="Month Over Month %
|
111 |
),
|
112 |
"Year Over Year %": datasets.Value(
|
113 |
-
dtype="float32", id="Month Over Month %
|
114 |
),
|
115 |
}
|
116 |
)
|
|
|
95 |
"County": datasets.Value(dtype="string", id="County"),
|
96 |
"Date": datasets.Value(dtype="string", id="Date"),
|
97 |
"Month Over Month % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
98 |
+
dtype="float32",
|
99 |
+
id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
|
100 |
),
|
101 |
"Quarter Over Quarter % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
102 |
+
dtype="float32",
|
103 |
+
id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
|
104 |
),
|
105 |
"Year Over Year % (Smoothed) (Seasonally Adjusted)": datasets.Value(
|
106 |
+
dtype="float32",
|
107 |
+
id="Month Over Month % (Smoothed) (Seasonally Adjusted)",
|
108 |
),
|
109 |
"Month Over Month %": datasets.Value(
|
110 |
+
dtype="float32", id="Month Over Month %"
|
111 |
),
|
112 |
"Quarter Over Quarter %": datasets.Value(
|
113 |
+
dtype="float32", id="Month Over Month %"
|
114 |
),
|
115 |
"Year Over Year %": datasets.Value(
|
116 |
+
dtype="float32", id="Month Over Month %"
|
117 |
),
|
118 |
}
|
119 |
)
|