We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33e2c1 commit adb4959Copy full SHA for adb4959
mapswipe_workers/mapswipe_workers/utils/api_calls.py
@@ -16,7 +16,7 @@ def remove_troublesome_chars(string: str):
16
"""Remove chars that cause trouble when pushed into postgres."""
17
if type(string) is not str:
18
return string
19
- troublesome_chars = {'"': "", "'": "", "\n": ""}
+ troublesome_chars = {'"': "", "'": "", "\n": " "}
20
for k, v in troublesome_chars.items():
21
string = string.replace(k, v)
22
0 commit comments