Skip to content

Commit 8565e5b

Browse files
committed
Format the changes
1 parent 69ede5a commit 8565e5b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

sdks/python/apache_beam/typehints/native_type_compatibility.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ def _match_is_exactly_sequence(user_type):
164164
def match_is_named_tuple(user_type):
165165
return (
166166
_safe_issubclass(user_type, typing.Tuple) and
167-
hasattr(user_type, '__annotations__') and
168-
hasattr(user_type, '_fields'))
167+
hasattr(user_type, '__annotations__') and hasattr(user_type, '_fields'))
169168

170169

171170
def _match_is_optional(user_type):

0 commit comments

Comments
 (0)