radubulimac's picture
fix import issue
2d876d1
raw
history blame
212 Bytes
from __future__ import annotations
from typing import NamedTuple
__all__ = [
"Point",
"Size",
]
class Point(NamedTuple):
x: int
y: int
class Size(NamedTuple):
rows: int
columns: int