We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45f8e6 commit 6646aa9Copy full SHA for 6646aa9
addons/source-python/packages/source-python/entities/entity.py
@@ -498,3 +498,7 @@ def get_input(self, name):
498
raise ValueError(
499
'Unknown input "{0}" for entity type "{1}".'.format(
500
name, self.classname))
501
+
502
+ def call_input(self, name, *args, **kwargs):
503
+ """Call the InputFunction instance for the given name."""
504
+ self.get_input(name)(*args, **kwargs)
0 commit comments