buttons: Add missing docstring to the SplitButton.activate() function

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2023-06-10 19:28:24 -04:00
parent 0307fae362
commit afb0ba5d68
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ class SplitButton(Gtk.Box):
self.emit("clicked")
def activate(self, *args) -> None:
"""Activate the primary button."""
self._primary.activate()
@GObject.Property(type=Gtk.Button, flags=GObject.ParamFlags.READABLE)