https://dagster.io/ logo
Title
d

Daniel Michaelis

06/25/2021, 8:52 AM
Hi, I have a short question on the syntax used in the 0.11.15 release notes. One of the points contains the following solid decorator:
@solid(input*defs=[InputDefinition("data", dagster_type=str, root_manager_key="my_root")])
I haven't encountered the usage of the asterisk as part of an input variable name as in
input*defs
and I couldn't find what it does. In the rest of the code I've only seen it written as
input_defs
. Is this just a typo or could someone clarify which function the asterisk has here?
j

jordan

06/25/2021, 2:04 PM
That’s a typo - I’ll throw a fix up. Sorry about that!
d

Daniel Michaelis

06/25/2021, 2:09 PM
Okay thanks!