Update nb-dt-import.py

Removed type hint which is throwing an error on python 3.8.10
This commit is contained in:
David Mc Ken 2022-09-09 11:01:08 -04:00
parent e733964bc1
commit 27db043f9d

View File

@ -83,7 +83,7 @@ def getFiles(vendors=None):
files.extend(glob.glob(base_path + f'[!Testing]*/*.{extension}'))
return files, discoveredVendors
def get_files_modules(vendors: list[str]=None):
def get_files_modules(vendors=None):
'''Get files list for modules.
Args: