We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de1b8bc commit e5e3ec8Copy full SHA for e5e3ec8
scripts/jobs/housing/housing_apply_gx_dq_tests.py
@@ -136,6 +136,9 @@ def main():
136
value=results_df.set_index(['expectation_config.type', 'dataset_name']).index.factorize()[0] + 1)
137
results_df['expectation_id'] = results_df['expectation_config.type'] + "_" + results_df['dataset_name']
138
139
+ # convert single column to string to avoid conversion error later on
140
+ results_df['result.unexpected_list'] = results_df['result.unexpected_list'].astype(str)
141
+
142
results_df['import_year'] = datetime.today().year
143
results_df['import_month'] = datetime.today().month
144
results_df['import_day'] = datetime.today().day
0 commit comments