This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def buildObjectAndDocstring(pobject): | |
import inspect | |
objectListWithDocStrings = pobject.__name__ + ': ' + inspect.getdoc(pobject) | |
return objectListWithDocStrings | |
################################################### | |
############ test classes below ################### | |
class CheckBaseClass(object):pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import maya.cmds as cmds | |
def check_unknown_refs(): | |
""" | |
Checks unknown references. | |
:return: unknown_references: list of all unknown references within the scene. | |
""" |