Skip to content
Snippets Groups Projects
Commit fdb427d3 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: escape

parent e48d3c53
No related branches found
No related tags found
2 merge requests!130Release v0.14.0,!125F escape
Pipeline #46652 passed
......@@ -21,10 +21,11 @@
def escape_quoted_text(text: str) -> str:
"""The characters `\` and `*` need to be escaped if used in quoted expressions in the query
"""The characters ``\\`` and ``*`` need to be escaped if used in quoted expressions in the query
language.
This function return the given string where the characters `\` and `*` are escaped by a `\`.
This function return the given string where the characters ``\\`` and ``*`` are escaped by
a ``\\``.
Parameters
----------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment