Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / teshsuite / python / platform-mix / platform-mix.py
index ca018a7..dfdd040 100644 (file)
@@ -1,11 +1,10 @@
-# Copyright (c) 2006-2021. The SimGrid Team. All rights reserved.
+# Copyright (c) 2006-2022. 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.
 
-from simgrid import Actor, Engine, Comm, Host, Mailbox, NetZone, Link, LinkInRoute, this_actor
+from simgrid import Actor, Engine, Host, Mailbox, NetZone, LinkInRoute, this_actor
 import sys
-import functools
 
 class Sender:
   """
@@ -13,7 +12,7 @@ class Sender:
   """
   def __init__(self, hosts):
     self.hosts = hosts
-  
+
   # Actors that are created as object will execute their __call__ method.
   # So, the following constitutes the main function of the Sender actor.
   def __call__(self):