(cls, stream: _SupportsRead, uri: str, joinfunc: _JoinFunc)
| 64 | |
| 65 | @classmethod |
| 66 | def load(cls, stream: _SupportsRead, uri: str, joinfunc: _JoinFunc) -> Inventory: |
| 67 | return cls.loads(stream.read(), uri=uri).data |
| 68 | |
| 69 | @classmethod |
| 70 | def _loads_v1(cls, lines: Sequence[str], *, uri: str) -> _Inventory: |