Skip to content

Commit ad05b9b

Browse files
committed
Bump uv.lock and fix deprecation
1 parent ccb3a29 commit ad05b9b

File tree

2 files changed

+723
-566
lines changed

2 files changed

+723
-566
lines changed

pyiceberg/expressions/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
from pyiceberg.typedef import L
7070
from pyiceberg.types import strtobool
7171

72-
ParserElement.enablePackrat()
72+
ParserElement.enable_packrat()
7373

7474
AND = CaselessKeyword("and")
7575
OR = CaselessKeyword("or")
@@ -82,7 +82,7 @@
8282
BETWEEN = CaselessKeyword("between")
8383

8484
unquoted_identifier = Word(alphas + "_", alphanums + "_$")
85-
quoted_identifier = QuotedString('"', escChar="\\", unquoteResults=True)
85+
quoted_identifier = QuotedString('"', esc_quote="\\", unquote_results=True)
8686

8787

8888
@quoted_identifier.set_parse_action

0 commit comments

Comments
 (0)