:orphan: .. NOTE: this needs to be written!! Callable Classes ================ One nifty Python feature is that any class can be "callable" -- that is, be called like a function. This is done by adding a ``__call__`` dunder method. .. code-block:: python class Callable