Skip to content

Commit

Permalink
Automatic backup 2024-03-01
Browse files Browse the repository at this point in the history
  • Loading branch information
snejus committed Mar 2, 2024
1 parent af4923f commit 26d09cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rich_tables/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def parse_sql_query(sql: str, span: float) -> dict:
kwargs = {"strip_comments": True}
# kwargs["reindent" if REINDENT else "reindent_aligned"] = True
kwargs["reindent_aligned"] = False
kwargs["reindent"] = False
kwargs["reindent"] = True
sql = sqlparse.format(sql, **kwargs)
query = defaultdict(str, span=round(span, 2), sql=sql)
query = {
Expand Down

0 comments on commit 26d09cd

Please sign in to comment.