Skip to content

Commit

Permalink
Merge pull request #114 from JeffersonLab/romanov_fix_warnings
Browse files Browse the repository at this point in the history
Fix provider warnings
  • Loading branch information
DraTeots authored Jan 15, 2025
2 parents 0349f08 + b9b21ea commit a51442e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/rcdb/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class RCDBProvider(object):

def __init__(self, connection_string=None, user_name="", check_version=True):
self._is_connected = False
self.path_name_regex = re.compile('^[\w\-_]+$', re.IGNORECASE)
self.path_name_regex = re.compile(r'^[\w\-_]+$', re.IGNORECASE)
self._connection_string = ""
self.logging_enabled = True
self.engine = None
Expand Down

0 comments on commit a51442e

Please sign in to comment.