| 53 | |
| 54 | |
| 55 | class ActiveWithNeighbors(NamedTuple): |
| 56 | NW: bool |
| 57 | N: bool |
| 58 | NE: bool |
| 59 | W: bool |
| 60 | me: bool |
| 61 | E: bool |
| 62 | SW: bool |
| 63 | S: bool |
| 64 | SE: bool |
| 65 | |
| 66 | def __bool__(self) -> bool: |
| 67 | return self.me |
| 68 | |
| 69 | |
| 70 | GenericImage = TypeVar("GenericImage", bound=BaseImage) |
no outgoing calls
no test coverage detected