We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9af2469 + 01b7f1f commit 1f95d06Copy full SHA for 1f95d06
1 file changed
tests/online_test.py
@@ -649,7 +649,7 @@ def test_find(self):
649
assert 1 == len(cells)
650
cells = self.worksheet.find('100', matchEntireCell=False, includeFormulas=True)
651
assert 2 == len(cells)
652
- cells = self.worksheet.find('\w+', searchByRegex=True)
+ cells = self.worksheet.find(r'\w+', searchByRegex=True)
653
assert 7 == len(cells)
654
self.worksheet.clear('A1', 'H1')
655
0 commit comments