Skip to content

Commit fcf5883

Browse files
authored
missed argument
1 parent 6b0b7d5 commit fcf5883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/python/pymongoarrow/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def _get_field_projection_value(self, fname, ftype, projection):
8282
return fname, ftype, projection
8383
if isinstance(ftype, pa.StructType):
8484
for nested_ftype in ftype:
85-
fname, ftype, projection = self._get_field_projection_value(fname + "." + nested_ftype.name, nested_ftype.type)
85+
fname, ftype, projection = self._get_field_projection_value(fname + "." + nested_ftype.name, nested_ftype.type, projection)
8686
return fname, ftype, projection
8787
projection[fname] = value
8888
return fname, ftype, projection

0 commit comments

Comments
 (0)