From a8b835aba3ce83aec9ab363881d419815d2b68ef Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Fri, 18 Jun 2021 15:28:56 -0500 Subject: [PATCH] Add module-level information A docstring has been added describing the module's purpose. __all__ has been added. It is limited to the declarations needed to use Solve(). The author's name has been added. --- Bone Market Solver.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Bone Market Solver.py b/Bone Market Solver.py index 2b1af92..a864042 100644 --- a/Bone Market Solver.py +++ b/Bone Market Solver.py @@ -1,3 +1,8 @@ +"""Use constraint programming to devise the optimal skeleton at the Bone Market in Fallen London.""" + +__all__ = ['Declaration', 'Fluctuation', 'OccasionalBuyer', 'Solve'] +__author__ = "Jeremy Saklad" + import argparse import curses from enum import Enum