Skip to content

Commit 8708a9d

Browse files
authored
PEP8 fix
1 parent b1800ac commit 8708a9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ def toInternal(self, obj):
596596
return tuple(f.toInternal(obj.get(n)) if c else obj.get(n)
597597
for n, f, c in zip(self.names, self.fields, self._needConversion))
598598
elif isinstance(obj, (tuple, list)):
599-
return tuple(f.toInternal(v) if c else v
599+
return tuple(f.toInternal(v) if c else v
600600
for f, v, c in zip(self.fields, obj, self._needConversion))
601601
elif hasattr(obj, "__dict__"):
602602
d = obj.__dict__

0 commit comments

Comments
 (0)