fixed: Removed -> str | None typing.

- Python versions below 3.10 do not support it.

https://github.com/ltdrdata/ComfyUI-Manager/issues/1663
This commit is contained in:
Dr.Lt.Data
2025-03-15 20:14:08 +09:00
parent 39eaa76b8a
commit 1f3274d3f5
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ import manager_downloader
from node_package import InstalledNodePackage
version_code = [3, 31, 2]
version_code = [3, 31, 3]
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')