Skip to content

Commit

Permalink
Merge pull request #242 from RobokopU24/DnlRKorn-patch-4
Browse files Browse the repository at this point in the history
Fixed regex pattern issue in loadCTD.py
  • Loading branch information
EvanDietzMorris authored Dec 9, 2024
2 parents cd9a6c5 + 90c6231 commit 37ce60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/CTD/src/loadCTD.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def convert_predicates(predicate):
:return:
"""
# the capture regex
regex = '\/|\ |\^'
regex = r'\/|\ |\^'

# clean up the predicate
cleaned_predicate = re.sub(regex, '_', predicate)
Expand Down

0 comments on commit 37ce60f

Please sign in to comment.