fix: skip null rows when parsing pool metrics CSV

This commit is contained in:
russell@unturf.com 2026-01-23 15:28:20 -05:00
parent 5965ce682d
commit 3f73bf6203
13 changed files with 21 additions and 21 deletions

View file

@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name="unsandbox",
version="4.2.19",
version="4.2.20",
author="Unsandbox",
description="Synchronous Python SDK for unsandbox.com code execution",
long_description=long_description,

View file

@ -27,7 +27,7 @@ from .un import (
CredentialsError,
)
__version__ = "4.2.19"
__version__ = "4.2.20"
__all__ = [
"execute_code",
"execute_async",