Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Unused python imports.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 24 Jan 2022 13:14:47 +0000 (14:14 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 24 Jan 2022 15:38:43 +0000 (16:38 +0100)
examples/python/app-masterworkers/app-masterworkers.py
examples/python/platform-failures/platform-failures.py
examples/python/platform-profile/platform-profile.py

index f6b1902..6eb8b19 100644 (file)
@@ -7,7 +7,7 @@
 # Take this tutorial online: https://simgrid.org/doc/latest/Tutorial_Algorithms.html
 # ##################################################################################
 
-from simgrid import Actor, Engine, Host, Mailbox, this_actor
+from simgrid import Engine, Mailbox, this_actor
 import sys
 
 # master-begin
@@ -71,4 +71,4 @@ if __name__ == '__main__':
     e.run()
 
     this_actor.info("Simulation is over")
-# main-end
\ No newline at end of file
+# main-end
index b127a26..7ea66d3 100644 (file)
@@ -3,7 +3,7 @@
 # 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, Comm, Engine, Host, Mailbox, this_actor, NetworkFailureException, TimeoutException
+from simgrid import Actor, Engine, Host, Mailbox, this_actor, NetworkFailureException, TimeoutException
 import sys
 
 # This example shows how to work with the state profile of a host or a link,
index 7748573..f4cf53b 100644 (file)
@@ -3,7 +3,7 @@
 # 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, Comm, Engine, Host, Mailbox, Link, this_actor
+from simgrid import Actor, Engine, Host, Link, this_actor
 import sys
 
 # This example demonstrates how to attach a profile to a host or a link, to specify external changes to the resource speed.