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 worker supports Python 3.9, however does not work with type hinting using standard collections as specified in PEP 585 and introduced in Python 3.9.
Pre-PEP 585 style typing, which works:
fromtypingimportList# `func host start` is happy with this style of type hinting.defmain(events: List[func.EventHubEvent]) ->None:
...
The worker supports Python 3.9, however does not work with type hinting using standard collections as specified in PEP 585 and introduced in Python 3.9.
Pre-PEP 585 style typing, which works:
New PEP 585 style typing, which doesn't work:
The error produced is:
System info, in case it's relevant:
func --version
- 4.0.4483python --version
- Python 3.9.12The text was updated successfully, but these errors were encountered: