(self)
| 306 | |
| 307 | @property |
| 308 | def transaction_indicator(self): |
| 309 | if self.is_connection_closed(): |
| 310 | return "?" |
| 311 | if self.failed_transaction(): |
| 312 | return "!" |
| 313 | if self.valid_transaction(): |
| 314 | return "*" |
| 315 | return "" |
| 316 | |
| 317 | def run( |
| 318 | self, |
nothing calls this directly
no test coverage detected