Skip to content

Commit

Permalink
typing: Gtk3: Add type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
lovetox committed Apr 8, 2023
1 parent 2c4a342 commit e796a88
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/gi-stubs/repository/_Gtk3.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -17561,8 +17561,10 @@ class Paned(Container, Atk.ImplementorIface, Buildable, Orientable):
def get_wide_handle(self) -> bool: ...
@classmethod
def new(cls, orientation: Orientation) -> Paned: ...
def pack1(self, *args, **kwargs): ... # FIXME Method
def pack2(self, *args, **kwargs): ... # FIXME Method
# override
def pack1(self, child: Widget, resize: bool, shrink: bool) -> None: ...
# override
def pack2(self, child: Widget, resize: bool, shrink: bool) -> None: ...
def set_position(self, position: int) -> None: ...
def set_wide_handle(self, wide: bool) -> None: ...

Expand Down

0 comments on commit e796a88

Please sign in to comment.