Skip to content

Commit

Permalink
Another format fix on python script
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Monahan committed Sep 26, 2024
1 parent 83812a8 commit a463f51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/sql_to_wasm_shell_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@
no_hyphens = trimmed.replace('-', '%2D')
no_spaces = no_hyphens.replace('\n',' ').replace(' ', '-')
encoded = (
no_spaces.replace(',','%2C')
.replace('=','%3D')
.replace(':','%3A')
.replace(r'/','%2F')
.replace('%2D',' ')
no_spaces.replace(',', '%2C')
.replace('=', '%3D')
.replace(':', '%3A')
.replace(r'/', '%2F')
.replace('%2D', ' ')
)
encoded_statements.append(encoded)

Expand Down

0 comments on commit a463f51

Please sign in to comment.