You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Timer signature specifies that function should have the signature Callable[..., None]. I couldn't find anything in the official Timer documentation on why that would be. In my project I found myself using a function with return value (that I'm not interested in), and don't see why this should not be accepted usage. I think probably the correct signature should be Callable[..., Any]. Could someone clarify?