-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Ive been using cmdx on and off for a few months now and I've been very happy with it!
My only (mild) pain point with it is the lack of type annotations
Would you be open for me to add that in?
I'm asking here before making a PR because I feel like this is something that should be supported by every contributor going forward so I don't want to start working on it if that's not something you want 🙂
Mypy can be used to ensure the annotations are good as part of the CI/CD so it can be enforced and made consistent.
Type annotations can either be using the python 3 syntax:
def createNode(type: Union[str, MTypeId], name: Optional[str] = None, parent: Optional[DagNode] = None) -> Node:
...or the python 2 compatible comment based syntax:
def createNode(type, name=None, parent=None):
# type: (Union[str, MTypeId], Optional[str], Optional[DagNode]) -> Node
...The python 3 syntax is more comfortable to use though considering cmdx supports older versions of Maya, the comment based syntax is probably the only viable option. We use this at work and works very well with both Mypy and Pylance (Apparently PyCharm supports it as well)
Let me know your thoughts on this 👍