From e05f023c4e0f32fbd4e7bb3746561f9ca334aa03 Mon Sep 17 00:00:00 2001 From: c0de Date: Thu, 10 Nov 2022 22:13:07 -0600 Subject: [PATCH] Update docstrings --- GhostBallBot/game/guess.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GhostBallBot/game/guess.py b/GhostBallBot/game/guess.py index 81b007b..4024f0f 100644 --- a/GhostBallBot/game/guess.py +++ b/GhostBallBot/game/guess.py @@ -5,7 +5,7 @@ # pylint: disable=unnecessary-lambda,line-too-long """ - Handling backend database stuff for a player's guess to make the GameManager smaller + Handling all the players at the end of a game to make the game manager smaller """ import math @@ -19,7 +19,8 @@ from database.models import ( class ProcessGuess: """ - A helper class for the GameManager that handles the logic behind a player's guess + A helper class for the GameManager that handles the + logic for all of the players at the end of a game """ def __init__(self, game, pitch_value, message):