(self)
| 26 | self.__pytest = pytest |
| 27 | |
| 28 | def __dir__(self) -> List[str]: |
| 29 | return dir(super()) + self.__all__ |
| 30 | |
| 31 | def __getattr__(self, name: str) -> Any: |
| 32 | if name not in self.__all__: |
nothing calls this directly
no outgoing calls
no test coverage detected