From 2e0052b5fe1c13f87a32d5f52088fb3a564ccd4b Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 22 Feb 2026 13:29:06 +0000 Subject: [PATCH] upd docstrings --- src/lottery_tui/lottery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lottery_tui/lottery.py b/src/lottery_tui/lottery.py index fd21f4b..f77a087 100644 --- a/src/lottery_tui/lottery.py +++ b/src/lottery_tui/lottery.py @@ -83,7 +83,7 @@ class SetForLife(Lottery): """A class representing the Set For Life lottery. Set For Life draws 5 numbers from a pool of 1 to 39, without replacement, - and 1 "Life Ball" number from a separate pool of 1 to 10, also without replacement. + and 1 "Life Ball" number from a separate pool of 1 to 10. """ POSSIBLE_NUMBERS = range(1, 40) @@ -100,7 +100,7 @@ class Thunderball(Lottery): """A class representing the Thunderball lottery. Thunderball draws 5 numbers from a pool of 1 to 39, without replacement, - and 1 "Thunderball" number from a separate pool of 1 to 14, also without replacement. + and 1 "Thunderball" number from a separate pool of 1 to 14. """ POSSIBLE_NUMBERS = range(1, 40)