python < 3.10 compat for starred unpacking. if this works i'll hug my computer

This commit is contained in:
sneakers-the-rat 2024-09-02 17:08:58 -07:00
parent 2a93694cfc
commit 99d68f0d00
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -20,7 +20,7 @@ except ImportError: # pragma: no cover
if sys.version_info.minor >= 10:
from typing import TypeAlias
else:
from typing_extensions import TypeAlias
from typing_extensions import TypeAlias, Unpack
H5Arraylike: TypeAlias = Tuple[Union[Path, str], str]
@ -116,7 +116,10 @@ class H5Proxy:
obj[key] = value
else:
if isinstance(key, tuple):
if sys.version_info.minor >= 10:
obj[*key, self.field] = value
else:
obj[Unpack[key], self.field] = value
else:
obj[key, self.field] = value