Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make the sendsend tests at least fail fast to not hinder my workflow
[simgrid.git] / examples / python / comm-waitallfor / comm-waitallfor.py
index b7d0342721a75d6971b1699d462ed85098ed6ec4..0f387951d241620bd624a45f9930a5c7fcc1b1dc 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2010-2022. The SimGrid Team. All rights reserved.
+# Copyright (c) 2010-2023. The SimGrid Team. All rights reserved.
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the license (GNU LGPL) which comes with this package.
@@ -14,7 +14,7 @@ This example implements the following scenario:
 
 from argparse import ArgumentParser
 from dataclasses import dataclass
-from typing import List;
+from typing import List
 from uuid import uuid4
 import sys
 
@@ -34,6 +34,7 @@ def create_parser() -> ArgumentParser:
     parser.add_argument(
         '--platform',
         type=str,
+        required=True,
         help='path to the platform description'
     )
     parser.add_argument(