Skip to content

Commit

Permalink
Fix input detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwb committed Oct 2, 2023
1 parent 5d6dcee commit a06f4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/yaml/yaml_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def config_schema(self, type):
self.schema_transforms()[self._urns[type]].configuration_schema)

def requires_inputs(self, typ, args):
if self._urns[type] in self.schema_transforms():
if self._urns[typ] in self.schema_transforms():
return bool(self.schema_transforms()[self._urns[type]].inputs)
else:
return super().requires_inputs(typ, args)
Expand Down

0 comments on commit a06f4ec

Please sign in to comment.