Traceback:File ".../telebot/ext/sync/webhooks.py", line 86, in SyncWebhookListenerdef process_update(self, request: Request, update: dict):NameError: name 'Request' is not definedThe Fix:In telebot/ext/sync/webhooks.py, you need to add from .types import Request or remove the type hint. This is critical for users trying to compile/freeze the library with Nuitka or PyInstaller."
Traceback:File ".../telebot/ext/sync/webhooks.py", line 86, in SyncWebhookListenerdef process_update(self, request: Request, update: dict):NameError: name 'Request' is not definedThe Fix:In telebot/ext/sync/webhooks.py, you need to add from .types import Request or remove the type hint. This is critical for users trying to compile/freeze the library with Nuitka or PyInstaller."