From c1c818c1f805ab8d885fa45753c6721c22068690 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 19 Nov 2018 17:59:45 -0800 Subject: [PATCH] add docstring --- examples/python/zebra_sat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/python/zebra_sat.py b/examples/python/zebra_sat.py index 71f6880389..18cc89af0b 100644 --- a/examples/python/zebra_sat.py +++ b/examples/python/zebra_sat.py @@ -39,6 +39,8 @@ from ortools.sat.python import cp_model # pylint: disable=too-many-statements def solve_zebra(): + """Solves the zebra problem.""" + # Create the model. model = cp_model.CpModel()