Skip to content

Commit

Permalink
Restore mypy ignore[call-arg] in yaml_io.pu
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmccluskey committed Sep 16, 2024
1 parent e005591 commit b7010be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/yaml/yaml_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def _validate_schema():
return (
beam_schema,
lambda record: covert_to_row(
fastavro.schemaless_reader(io.BytesIO(record), schema)))
fastavro.schemaless_reader(io.BytesIO(record), schema))) # type: ignore[call-arg]
else:
raise ValueError(f'Unknown format: {format}')

Expand Down

0 comments on commit b7010be

Please sign in to comment.