From afb0ba5d68e6f92dce6bafe9289de6f04d13e5d9 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Sat, 10 Jun 2023 19:28:24 -0400 Subject: [PATCH] buttons: Add missing docstring to the SplitButton.activate() function Signed-off-by: Anna Schumaker --- emmental/buttons.py | 1 + 1 file changed, 1 insertion(+) diff --git a/emmental/buttons.py b/emmental/buttons.py index 19cba81..f9e80e6 100644 --- a/emmental/buttons.py +++ b/emmental/buttons.py @@ -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)