Fix import error on windows

main
Alex 2023-10-31 14:29:15 +01:00
parent 9736bd2d10
commit 079c224f17
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ from rich.progress import Progress
import platform import platform
# Increase file_limit to prevent error "Too many open files" # Increase file_limit to prevent error "Too many open files"
if platform != "Windows": if platform.system() != "Windows":
import resource import resource
file_limit = list(resource.getrlimit(resource.RLIMIT_NOFILE)) file_limit = list(resource.getrlimit(resource.RLIMIT_NOFILE))