(self)
| 5 | |
| 6 | class KDEInterface (WMInterface): |
| 7 | def __init__(self) -> None: |
| 8 | super().__init__() |
| 9 | self.x = 0 |
| 10 | self.y = 0 |
| 11 | |
| 12 | def get_cursor_position(self) -> tuple[int, int]: |
| 13 | script = "kdotool getmouselocation" |
nothing calls this directly
no outgoing calls
no test coverage detected