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

@@ -72,7 +72,7 @@ def MinCostFlow():
print('There was an issue with the min cost flow input.')
def main(_):
def main(_=None):
MaxFlow()
MinCostFlow()