Skip to content

Commit

Permalink
Restore mypy ignore[call-arg] in yaml_io.py (#32475)
Browse files Browse the repository at this point in the history
* Restore mypy ignore[call-arg] in yaml_io.pu

* formatting
  • Loading branch information
jrmccluskey committed Sep 17, 2024
1 parent 1b2d21a commit b1fd221
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 b1fd221

Please sign in to comment.