just a very simple thing, is there a way to access outer class from the inner class definition, like this:
class Model:
class Options:
model = Model <-- error!
I nest Options inside Model because semantically these Options exist only in the scope of model, so it seems appropriate.
Thanks, Alex