Skip to content

Commit 997ae15

Browse files
committed
Fix SyntaxWarning in regex using raw string
1 parent aac0b48 commit 997ae15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Data/curation/compilers/plain_bpmf_compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__copyright__ = "Copyright 2012 and onwards The McBopomofo Authors"
99
__license__ = "MIT"
1010

11-
skip = re.compile(".\s+_punctuation.*_>")
11+
skip = re.compile(r".\s+_punctuation.*_>")
1212

1313
insert = [".", "_punctuation_\"", "0.0"]
1414

0 commit comments

Comments
 (0)