I did the data cleaning process and I get the following error after validating the suggested data casting:
---------------------------------------------------------------------------
UnboundLocalError Traceback (most recent call last)
/usr/local/lib/python3.10/dist-packages/cocoon_data/__init__.py in on_button_clicked(b)
20595 new_table_name = old_table_name + "_casted"
20596
> 20597 schema = table_pipeline.get_schema(con)
20598 columns = list(schema.keys())
20599 non_affected_columns = [enclose_table_name(col, con=con) for col in columns if col not in affected_columns]
UnboundLocalError: local variable 'con' referenced before assignment
Hi,
I am getting an error in the test colab notebook (v0.1.153): https://colab.research.google.com/github/Cocoon-Data-Transformation/cocoon/blob/main/demo/Cocoon_Stage_Demo.ipynb
I did the data cleaning process and I get the following error after validating the suggested data casting: