aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib/utils.py')
-rw-r--r--codegen/lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/codegen/lib/utils.py b/codegen/lib/utils.py
index 162dd0fa..fd1e553b 100644
--- a/codegen/lib/utils.py
+++ b/codegen/lib/utils.py
@@ -10,7 +10,7 @@ def to_snake_case(name: str):
def to_camel_case(name: str):
- s = re.sub('[_ ](\w)', lambda m: m.group(1).upper(),
+ s = re.sub(r'[_ ](\w)', lambda m: m.group(1).upper(),
name.replace('.', '_').replace('/', '_'))
s = upper_first_letter(s)
# if the first character is a number, we need to add an underscore