Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 279 Bytes

File metadata and controls

13 lines (7 loc) · 279 Bytes
orphan:

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.

class Callable