Is it possible to extend a class which has a decorator applied to it? For example:
@someDecorator
Class foo(object):
...
...
Class bar(foo):
...
...
Ideally bar would not be affected by the decorator, but first I want to find out if this is even possible. Currently I am getting a non-runtime error:
"TypeError: Error when calling the metaclass bases function() argument 1 must be code, not str "
Any suggestions?