Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3de2006ef | ||
|
|
0295dd6288 |
@@ -157,6 +157,8 @@ class ModelManager:
|
||||
|
||||
def get_all_files_entry(directory: str):
|
||||
entries: list[os.DirEntry[str]] = []
|
||||
if not os.path.exists(directory):
|
||||
return []
|
||||
with os.scandir(directory) as it:
|
||||
for entry in it:
|
||||
if not include_hidden_files and entry.name.startswith("."):
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "comfyui-model-manager"
|
||||
description = "Manage models: browsing, download and delete."
|
||||
version = "2.8.2"
|
||||
version = "2.8.3"
|
||||
license = { file = "LICENSE" }
|
||||
dependencies = ["markdownify"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user