Skip to content

Commit d362ab0

Browse files
committed
updated to fix raw string deprecation
1 parent d403bd3 commit d362ab0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

splitapiclient/http_clients/base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_params_from_url_template(url):
5252
5353
:rtype: list.
5454
'''
55-
regex = '{([\w-]+)}*'
55+
regex = r'{([\w-]+)}*'
5656
url_params = re.findall(regex, url)
5757
return list(set(url_params)) if url_params else []
5858

0 commit comments

Comments
 (0)