Skip to content

Commit

Permalink
Make RegEx string a raw string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernPetersen committed Jul 25, 2023
1 parent d08af99 commit 77400ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CloudFlare/api_decode_from_openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

API_TYPES = ['GET', 'POST', 'PATCH', 'PUT', 'DELETE']

match_identifier = re.compile('\{[A-Za-z0-9_]*\}')
match_identifier = re.compile(r'\{[A-Za-z0-9_]*\}')

def do_path(cmd, values):
""" do_path() """
Expand Down

0 comments on commit 77400ea

Please sign in to comment.