Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Anupam authored and Anupam committed Jun 29, 2023
1 parent 0def7c4 commit 3941ff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sql/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def parse(cell, config):
pointer = cell.find("<<")
if pointer != -1:
left = cell[:pointer].replace(" ", "").replace("\n", "")
right = cell[pointer + 2 :].strip(' ')
right = cell[pointer + 2 :].strip(" ")

if "=" in left:
result["result_var"] = left[:-1]
Expand All @@ -68,7 +68,7 @@ def parse(cell, config):

result["sql"] = right
else:
result["sql"] = cell.strip(' ')
result["sql"] = cell.strip(" ")

return result

Expand Down

0 comments on commit 3941ff5

Please sign in to comment.