Skip to content

Commit

Permalink
fix: replace py escape character to general one
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Aug 21, 2024
1 parent 5118352 commit a0ba731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lean/models/json_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def get_settings(self) -> Dict[str, str]:
for key, value in configuration._value.items():
settings[key] = str(value)
else:
settings[configuration._id] = str(configuration._value).replace("\\", "/")
settings[configuration._id] = str(configuration._value).replace("\\n", "\n").replace("\\", "/")

return settings

Expand Down

0 comments on commit a0ba731

Please sign in to comment.