Skip to content

Commit 23f2764

Browse files
authored
Merge pull request #11 from rfdearborn/rfdearborn/actually-handle-uppercase-snowflake-columns
actually match snowflake's uppercase col names
2 parents 0695c60 + 3bb785d commit 23f2764

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dbt_docs_to_notion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,13 @@ def main():
226226
"type": "text",
227227
"text": {
228228
"content": (
229-
column_descriptions[col_name]
229+
column_descriptions[col_name.lower()]
230230
if col_name.lower() in column_descriptions
231231
else ''
232232
)
233233
},
234234
"plain_text": (
235-
column_descriptions[col_name]
235+
column_descriptions[col_name.lower()]
236236
if col_name.lower() in column_descriptions
237237
else ''
238238
)

0 commit comments

Comments
 (0)