Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
Signed-off-by: Levko Kravets <[email protected]>
  • Loading branch information
kravets-levko committed May 30, 2024
1 parent 9d1c0fb commit daf92bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/sqlalchemy/_ddl.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def post_create_table(self, table):
post.append("COMMENT " + comment)

post.append("TBLPROPERTIES('delta.feature.allowColumnDefaults' = 'enabled')")
return '\n'.join(post)
return "\n".join(post)

def visit_unique_constraint(self, constraint, **kw):
logger.warning("Databricks does not support unique constraints")
Expand Down

0 comments on commit daf92bb

Please sign in to comment.