Skip to content

Commit 1f95d06

Browse files
authored
Merge pull request #613 from onlined/patch-3
Prevent escape related SyntaxWarning
2 parents 9af2469 + 01b7f1f commit 1f95d06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/online_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def test_find(self):
649649
assert 1 == len(cells)
650650
cells = self.worksheet.find('100', matchEntireCell=False, includeFormulas=True)
651651
assert 2 == len(cells)
652-
cells = self.worksheet.find('\w+', searchByRegex=True)
652+
cells = self.worksheet.find(r'\w+', searchByRegex=True)
653653
assert 7 == len(cells)
654654
self.worksheet.clear('A1', 'H1')
655655

0 commit comments

Comments
 (0)