add depth_anywhere processor

This commit is contained in:
Vladimir Mandic
2024-01-23 13:21:12 -05:00
parent 6f2ad1485a
commit f83f4edb0b
9 changed files with 649 additions and 4 deletions
+1 -1
View File
@@ -388,7 +388,7 @@ def load_models(model_path: str, model_url: str = None, command_path: str = None
@param ext_filter: An optional list of filename extensions to filter by
@return: A list of paths containing the desired model(s)
"""
places = list(set([model_path, command_path]))
places = list(set([model_path, command_path])) # noqa:C405
output = []
try:
output:list = [*files_cache.list_files(*places, ext_filter=ext_filter, ext_blacklist=ext_blacklist)]