(self)
| 83 | |
| 84 | |
| 85 | def status(self): |
| 86 | # local from self.field (attribute with self receiver) |
| 87 | retries = self.max_retries |
| 88 | # local from compound: identifier + literal |
| 89 | remaining = retries - 1 |
| 90 | # local from chained call |
| 91 | name = str(self.service_name) |
| 92 | return remaining |
| 93 | |
| 94 | |
| 95 | def validate_email(address: str, strict: bool = True) -> bool: |
no outgoing calls
no test coverage detected