
30 Nov
2020
30 Nov
'20
5:58 a.m.
Oh, note that Abdulla said: "we can annotate our **functions** with “Any" right away without the extra step."
Python 3.9.0 (default, Nov 21 2020, 14:01:55)
from __future__ import annotations def foo(a: Any, b: Dict[Any, Any]) -> Any: pass
--
Inada Naoki songofacandy@gmail.com