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

@@ -49,7 +49,7 @@ def RunAssignmentOn4x4Matrix():
'Some input costs are too large and may cause an integer overflow.')
def main(_):
def main(_=None):
RunAssignmentOn4x4Matrix()