From 8da17d3235828ec2fff902bb04eb40fed6bdd22c Mon Sep 17 00:00:00 2001 From: Marcelo Saguas Iacovone Date: Mon, 26 Feb 2024 23:52:55 -0800 Subject: [PATCH] Removes try/excepts and implements test case for string plugs --- cmdx.py | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/cmdx.py b/cmdx.py index 8f79282..f16ce74 100644 --- a/cmdx.py +++ b/cmdx.py @@ -653,6 +653,13 @@ def __setitem__(self, key, value): ... else: ... assert False >>> + >>> node["myString"] = String() + >>> node["myString"] + cmdx.Plug("myNode", "myString") == "" + >>> node["myString"] = "Hello, world!" + >>> node["myString"] + cmdx.Plug("myNode", "myString") == "Hello, world!" + >>> >>> delete(node) """ @@ -2674,24 +2681,21 @@ def __str__(self): return str(self.read()) def __repr__(self): - try: - # Delegate the value reading to __str__ - read_result = str(self) - valid = True - except: - valid = False - cls_name = '{}.{}'.format(__name__, self.__class__.__name__) msg = '{}("{}", "{}")'.format(cls_name, self.node().name(), self.name()) - if valid: - try: - if self.typeClass() == String: + + if not self.isCompound and not self.isArray: + # Delegate and include the value result from __str__ + read_result = str(self) + attr = self._mplug.attribute() + typ = attr.apiType() + if typ == om.MFn.kTypedAttribute: + typ = om.MFnTypedAttribute(attr).attrType() + if typ == om.MFnData.kString: # Add surrounding quotes, indicating it is a string read_result = '"{}"'.format(read_result) - except TypeError: - pass msg += ' == {}'.format(read_result) return msg