Register a cursor for the automatic parking service.
(self, cursor: Cursor)
| 739 | return Cursor(self) |
| 740 | |
| 741 | def register_cursor(self, cursor: Cursor) -> None: |
| 742 | """Register a cursor for the automatic parking service.""" |
| 743 | self.cursors.add(cursor) |
| 744 | |
| 745 | def deregister_cursor(self, cursor: Cursor) -> None: |
| 746 | """Deregister a cursor from the automatic parking service.""" |