We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. from
@macro_node() def my_example(macro: Macro): macro.foo = foo() macro.bar = bar(i=macro.foo) macro.inputs_map = {"foo__widget": "thingy"} macro.outputs_map = {"bar__hide_it": None}
to
@macro_node() def my_example(macro: Macro): macro.foo = foo() macro.bar = bar(i=macro.foo) macro.inputs_map = {foo.inputs.widget: "thingy"} macro.outputs_map = {bar.outputs.hide_it: None}
So that we can leverage tab-completion when defining the LHS of the pairs.
I guess implementation will involve something like adding something like
@property def mangled_name(self): return self.node.label + "__" + self.label
and then when parsing the IO maps, using key.mangled_name when isinstance(key, Channel).
key.mangled_name
isinstance(key, Channel)
The text was updated successfully, but these errors were encountered:
Came up in the context of discussing #85
Sorry, something went wrong.
There are no more IO maps (#276 etc)
No branches or pull requests
E.g. from
to
So that we can leverage tab-completion when defining the LHS of the pairs.
I guess implementation will involve something like adding something like
and then when parsing the IO maps, using
key.mangled_name
whenisinstance(key, Channel)
.The text was updated successfully, but these errors were encountered: