Coverage for typed_stream/_impl/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-02-12 21:24 +0000

1# Licensed under the EUPL-1.2 or later. 

2# You may obtain a copy of the licence in all the official languages of the 

3# European Union at https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12 

4 

5"""The internal implementations of typed_stream.""" 

6 

7from __future__ import annotations 

8 

9from . import file_streams, stream 

10from .file_streams import * # noqa: F401, F403 

11from .stream import * # noqa: F401, F403 

12 

13__all__ = ( 

14 *stream.__all__, 

15 *file_streams.__all__, 

16)