the hell was that

This commit is contained in:
sneakers-the-rat 2024-07-10 00:02:39 -07:00
parent bf7f62fd8f
commit b83865352c
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -18,7 +18,7 @@ class Dimension(NamedTuple):
"""A single dimension/shape pair"""
dims: Optional[str] = None
shape: [Optional[int]] = None
shape: Optional[int] = None
class Shape(tuple[Dimension]):