This commit is contained in:
Dave Pearson
2023-02-27 13:45:43 +00:00
parent dec9a77304
commit 47eb9f0064

View File

@@ -133,7 +133,7 @@ class RadioSet(Container):
@property
def pressed_button(self) -> RadioButton | None:
"""The currently-pressed button, or `None` none are pressed."""
"""The currently-pressed button, or `None` if none are pressed."""
try:
return self.query_one("RadioButton.-on", RadioButton)
except QueryError: