This message was deleted.
# python
s
This message was deleted.
b
@miniature-gigabyte-99238 you’re absolutely okay to handle it in the way you’re doing it in pastebin. Our Python SDK supports two input mechanisms: a standard dictionary of options (your pastebin way) a typed input (the
xyzArgs
way) This is really an artifact of how the python type system works. This is a good intro: https://cerfacs.fr/coop/python-typing I personally prefer the typed input way, but it can be quite verbose, however it really does help you catch errors when defining infrastructure
m
Thanks @billowy-army-68599 for clearing some things up. Helped a lot.