Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

passing options to superclass method

I would like to modify the plot code of a plot attribute in a derived class

class Foo(Bar):
     def plot(self, **options):
         super(Foo, self).plot(options)

This does not seem to work. What is the right way to pass the options?

click to hide/show revision 2
retagged

updated 2 years ago

FrédéricC gravatar image

passing options to superclass method

I would like to modify the plot code of a plot attribute in a derived class

class Foo(Bar):
     def plot(self, **options):
         super(Foo, self).plot(options)

This does not seem to work. What is the right way to pass the options?