I created the mySimpleFile.py file with class "MySimple"
class MySimple (object):
    def __init__(self, name):
        self.name = name
        print("from Class",self.name)
 
print ("I do not want this automatically!!!")
Now I want to import this class to my another file.
import mySimpleFile
 
print("bla bla bla")
So I get this: 
I do not want this automatically!!! 
bla bla bla
So how can I disable this initialization?
Thank you!
 
     
     
    