Skip to content

Commit 0ed7862

Browse files
authored
fix(snowflake): allow pyarrow 20 to work (#11173)
1 parent 56ed095 commit 0ed7862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/backends/snowflake/converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
class JSONScalar(pa.ExtensionScalar):
18-
def as_py(self):
18+
def as_py(self, **_):
1919
value = self.value
2020
if value is None:
2121
return value

0 commit comments

Comments
 (0)