Skip to content

Commit

Permalink
Fix issue with regex for parsing name
Browse files Browse the repository at this point in the history
  • Loading branch information
bburan committed Nov 21, 2024
1 parent 72b371b commit 2c5d01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cftscal/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def list_calibrations(self, name):

class CalibrationManager:

P_NAME = re.compile('^(.*)\((.*)\)$')
P_NAME = re.compile(r'^(.*)\((.*)\)$')

def __init__(self, object_class):
self.loaders = []
Expand Down

0 comments on commit 2c5d01e

Please sign in to comment.