A somewhat arcane error message after showing a toast in Python 3.11:
from win10toast import ToastNotifier
t = ToastNotifier()
>>> t.show_toast("hello")
WNDPROC return value cannot be converted to LRESULT
TypeError: WPARAM is simple, so must be an int object (got NoneType)
A somewhat arcane error message after showing a toast in Python 3.11: