I have a python class with several init variables:
class Foo(object): def __init__(self, d1, d2): self.d1 = d1 self.d2 = d2
I learned of another way to solve this.