diff --git a/include/typings/array2d.pyi b/include/typings/array2d.pyi index a0300be2..00a8d66f 100644 --- a/include/typings/array2d.pyi +++ b/include/typings/array2d.pyi @@ -15,7 +15,7 @@ class array2d(Generic[T]): def is_valid(self, col: int, row: int) -> bool: ... - def get(self, col: int, row: int, default=None): ... + def get(self, col: int, row: int, default=None) -> T | None: ... @overload def __getitem__(self, index: tuple[int, int]) -> T: ...