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?