logoalt Hacker News

ojii04/21/20251 replyview on HN

Classes are callable.


Replies

Spivak04/23/2025

You can abuse this fact with type hunting to get a ParamSpec of a class's __init__ arguments.

But yeah type systems get weird at the margins. Your class is an instance of type which has a __call__ method which creates an instance of your class.