Reputation: 1
i dont want to see any datetime fields in my dict
class S(TypedDict):
d: dict
print(TypedDictFactory.create_factory(model=S).build())
to annotate dict like dict[str,int] is not an option for me. in reality i have a very nested structure
Upvotes: 0
Views: 277