Skip to content

Commit ba72b08

Browse files
hsyan2008lpil
authored andcommitted
fix the escape issue with python 3.12.0
1 parent a8dc763 commit ba72b08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UltiSnips/java.snippets

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def nl(snip):
2121
snip.rv += " "
2222
def getArgs(group):
2323
import re
24-
word = re.compile('[a-zA-Z0-9><.]+ \w+')
24+
word = re.compile(r'[a-zA-Z0-9><.]+ \w+')
2525
return [i.split(" ") for i in word.findall(group) ]
2626
2727
def camel(word):

0 commit comments

Comments
 (0)