diff --git a/opengate/__init__.py b/opengate/__init__.py index 53e30a72c..df806a5e4 100644 --- a/opengate/__init__.py +++ b/opengate/__init__.py @@ -1,8 +1,8 @@ # This file handles the way opengate is imported. +""" import colored import threading - print( colored.stylize( f"Importing opengate (thread " f"{threading.get_native_id()}) ... ", @@ -11,6 +11,8 @@ end="", flush=True, ) +print(colored.stylize("done", colored.fore("dark_gray"))) +""" # the following modules are imported respecting the package structure # they will be available via @@ -52,6 +54,3 @@ from opengate.managers import Simulation from opengate.managers import create_sim_from_json from opengate.utility import g4_units - - -print(colored.stylize("done", colored.fore("dark_gray")))