From a463f51495ee97ef99f4a1634b49554e1439b340 Mon Sep 17 00:00:00 2001 From: Alex-Monahan Date: Thu, 26 Sep 2024 14:57:45 -0700 Subject: [PATCH] Another format fix on python script --- scripts/sql_to_wasm_shell_link.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/sql_to_wasm_shell_link.py b/scripts/sql_to_wasm_shell_link.py index f65b9450338..47e4efe39db 100644 --- a/scripts/sql_to_wasm_shell_link.py +++ b/scripts/sql_to_wasm_shell_link.py @@ -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)