You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enum = self.componentType.values()
if not enum and not isinstance(self._componentValues,base.NoValue):
enum = self._componentValues
for idx, componentType in enumerate(enum):
The text was updated successfully, but these errors were encountered:
_componentValues can be NoValue in some situation, which makes debugging crash:
I fixed the bug by changing this line:
pyasn1/pyasn1/type/univ.py
Line 2722 in db8f1a7
to:
The text was updated successfully, but these errors were encountered: