Skip to content

Commit 3e0d48f

Browse files
committed
fix incorrect slugify pattern
1 parent c82f5de commit 3e0d48f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/dss/tools/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __exit__(self, b, c, d):
1414

1515

1616
def slugify(name):
17-
return re.sub("r[^A-Za-z0-9_]", "_", name)
17+
return re.sub(r"[^A-Za-z0-9_]", "_", name)
1818

1919
class FlowCodeGenerator(object):
2020
def __init__(self):

0 commit comments

Comments
 (0)