examples: Fix main default parameter

This commit is contained in:
Corentin Le Molgat
2022-04-14 14:44:13 +02:00
parent ad19407ff6
commit 34e442cd5d
22 changed files with 22 additions and 22 deletions

View File

@@ -28,7 +28,7 @@ from ortools.sat.python import visualization
from ortools.sat.python import cp_model
def main(_):
def main(_=None):
"""Solves the gate scheduling problem."""
model = cp_model.CpModel()