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.
2 parents 01838a0 + b6faaa9 commit 476d237Copy full SHA for 476d237
linkml_runtime/utils/pattern.py
@@ -31,7 +31,7 @@ class PatternResolver():
31
32
# regular expression capturing the various use cases
33
# for the optionally dot separated, curly braces bound, pattern syntax
34
- var_name = re.compile("{([a-z0-9_-]+([\.-_ ][a-z0-9]+)*)}", re.IGNORECASE)
+ var_name = re.compile(r"{([a-z0-9_-]+([\.-_ ][a-z0-9]+)*)}", re.IGNORECASE)
35
36
def __init__(self, schema_view):
37
# fetch settings from schema_view
0 commit comments