Skip to content
View JanPhKoch's full-sized avatar

Block or report JanPhKoch

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Finds and deletes all unknown refere... Finds and deletes all unknown references within the maya scene.
    1
    import maya.cmds as cmds
    2
    
                  
    3
    
                  
    4
    def check_unknown_refs():
    5
        """
  2. Print list of subclasses and their d... Print list of subclasses and their docstrings
    1
    def buildObjectAndDocstring(pobject):
    2
        import inspect
    3
        objectListWithDocStrings = pobject.__name__ + ': ' + inspect.getdoc(pobject)
    4
        return objectListWithDocStrings
    5