Update docstrings

This commit is contained in:
c0de 2022-11-10 22:13:07 -06:00
parent 7818109a9c
commit e05f023c4e

View File

@ -5,7 +5,7 @@
# pylint: disable=unnecessary-lambda,line-too-long # 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 import math
@ -19,7 +19,8 @@ from database.models import (
class ProcessGuess: 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): def __init__(self, game, pitch_value, message):