Skip to content

Commit

Permalink
[pyroot] Fix syntax warning in JsMVA
Browse files Browse the repository at this point in the history
  • Loading branch information
vepadulano authored and guitargeek committed May 13, 2024
1 parent 4e5ebd2 commit 3c60d2d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -273,7 +273,7 @@ def __transformOneGroup(self, firstLine):
ltmp = re.match(r"\s*:\s*(.*)", self.lines[self.lineIndex + j + ik]).group(1)
if ltmp.find(":") != -1:
matrixLines.append(ltmp.split(":"))
rmatch = "^\s*"
rmatch = r"^\s*"
for ii in range(len(matrixLines)):
rmatch += r"(\+\d+\.?\d*|-\d+\.?\d*)\s*"
rmatch += "$"
Expand Down

0 comments on commit 3c60d2d

Please sign in to comment.