What does object’s __init__() method do in python? [duplicate]
The short answer is that object.__init__() method does nothing except check that no arguments have been passed in. See the source for details. When called on an instance of Service, the super() call will delegate to object.__init__() and nothing will happen. However, when called on an instance of a subclass of Service, things get more … Read more