(exc: Exception)
| 310 | |
| 311 | |
| 312 | def _is_enoent(exc: Exception) -> bool: |
| 313 | if isinstance(exc, FileNotFoundError): |
| 314 | return True |
| 315 | if isinstance(exc, OSError) and exc.errno == errno.ENOENT: |
| 316 | return True |
| 317 | return False |
no outgoing calls
no test coverage detected
searching dependent graphs…