summarylogtreecommitdiffstats
path: root/fix-python312-regex-warning.patch
blob: 648d8512274c393fa82ca40cf2bf1805502063f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- ezodf/tableutils.py
+++ ezodf/tableutils.py
@@ -28,7 +28,7 @@
     next(generator)
     return generator

-CELL_ADDRESS = re.compile('^([A-Z]+)(\d+)$')
+CELL_ADDRESS = re.compile(r'^([A-Z]+)(\d+)$')

 def address_to_index(address):
     def column_name_to_index(colname):