Skip to content

Commit a9e45e8

Browse files
committed
ran linter to fix line-too-long error
1 parent 8dd7056 commit a9e45e8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bindings/python/pymongoarrow/schema.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ def _get_field_projection_value(self, fname, ftype, projection):
7777
return self._get_field_projection_value(fname, ftype.value_field.type, projection)
7878
if isinstance(ftype, pa.StructType):
7979
for nested_ftype in ftype:
80-
projection = self._get_field_projection_value(fname + "." + nested_ftype.name, nested_ftype.type, projection)
80+
projection = self._get_field_projection_value(
81+
fname + "." + nested_ftype.name, nested_ftype.type, projection
82+
)
8183
return projection
8284
projection[fname] = value
8385
return projection
84-
86+
8587
def __eq__(self, other):
8688
if isinstance(other, type(self)):
8789
return self.typemap == other.typemap

0 commit comments

Comments
 (0)