Return True if the include uses a directory-qualified path.
(include_path: str)
| 115 | |
| 116 | |
| 117 | def _is_qualified(include_path: str) -> bool: |
| 118 | """Return True if the include uses a directory-qualified path.""" |
| 119 | return any(include_path.startswith(p) for p in _VALID_PREFIXES) |
| 120 | |
| 121 | |
| 122 | def _is_relative(include_path: str) -> bool: |
no test coverage detected