Source code for qcodes.utils.full_class

[docs] def full_class(obj: object) -> str: """The full importable path to an object's class.""" return type(obj).__module__ + "." + type(obj).__name__