Closed Betavion closed 10 months ago
DO = fc.DocumentObject DOList = list[DO]
is not compatible with python3.8, better this way:
from typing import List DO = fc.DocumentObject DOList = List[DO]
Thanks for reporting. Fixed in ae7b013.
is not compatible with python3.8, better this way: