(self)
| 1437 | return False |
| 1438 | |
| 1439 | def __repr__(self): |
| 1440 | return "[CSR Format: %s, Subject:%s, Verified: %s]" % ( |
| 1441 | self.fmt.value, |
| 1442 | self.subject_str, |
| 1443 | self.verifySelf(), |
| 1444 | ) |
| 1445 | |
| 1446 | |
| 1447 | #################### |
nothing calls this directly
no test coverage detected