When I call pyplot.title(\'some string\') it throws the exception, \'str\' object is not callable\'. I copied the following from the matplotlib onl
pyplot.title(\'some string\')
\'str\' object is not callable\'
Without restarting, I've found that changing to a .set_title() method following my plotting method has resulted in a successful pass without an error.
.set_title()