I'm not sure where to provide misc feedback as I t...
# hamilton-help
d
I'm not sure where to provide misc feedback as I try to use Hamilton. Is there a way to disable type hint requirements? I abhor hints. I have a small amount of time to try migrating some simple flow to Hamilton and requiring type hints is going to make me abandon the efffort I think.
e
Hey — thanks for the feedback! Currently type-hints are required — this is feedback we have not gotten yet (but it’s always valuable to get it!). That said, if you want you could attempt some workarounds (not recommended, but up to you 🙂) 1. Use
Any
— this should just drop in and work 2. Modify your fn signature to have
Any
after the fact. You could do this by having a function that imports it/messes with a module and alters with the type signature.
s
Note: you can implement graph adapters to augment the “type checking” piece — but I think we have an assumption on type hints being there in the beginning — so maybe having something like (2) would suffice.