Skip to content

Commit

Permalink
Merge branch 'fix-invalid-escape-sequence' of https://github.com/Bjoe…
Browse files Browse the repository at this point in the history
…rnPetersen/python-cloudflare into BjoernPetersen-fix-invalid-escape-sequence
  • Loading branch information
mahtin committed Sep 21, 2023
2 parents 65a7e3d + 77400ea commit 2bccbb9
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 2bccbb9

Please sign in to comment.