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 33333bc commit bb1e96bCopy full SHA for bb1e96b
api/utils/data_indexing.py
@@ -163,12 +163,7 @@ def index_resource_data(resource: Resource) -> Optional[ResourceDataTable]:
163
if col in existing_schemas:
164
existing_description = existing_schemas[col]["description"]
165
# Check for None and non-auto-generated descriptions
166
- if (
167
- existing_description is not None
168
- and not existing_description.startswith(
169
- "Description of column"
170
- )
171
- ):
+ if existing_description is not None:
172
description = existing_description
173
logger.info(
174
f"Preserved custom description for column {col}"
0 commit comments