Merge pull request #830 from gaphor/movetype-item

MoveType should contain an item attribute
This commit is contained in:
Arjan Molenaar 2024-08-18 18:06:06 +02:00 committed by GitHub
commit ad7e00bff7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,8 @@ if TYPE_CHECKING:
class MoveType(Protocol):
item: Item
def __init__(self, item: Item, view: GtkView):
...