#Is it possible to use Lists/Sets in input parameters using python SDK?
1 messages · Page 1 of 1 (latest)
Oh crap! Where are you importing List from? Collections or typing?
>>> from typing import List
>>> issubclass(List, type)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: issubclass() arg 1 must be a class
Just use normal list, no need for typing.List since Python 3.9.