Coverage for oarepo_c4gh/crypt4gh/crypt4gh.py: 100%
3 statements
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-07 12:05 +0000
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-07 12:05 +0000
1"""This module implements a simple convenience wrapper Crypt4GH on top
2of actual Stream4GH implementation.
4"""
6from .stream.stream4gh import Stream4GH
9class Crypt4GH(Stream4GH):
10 """This class differs only in its name from the underlying
11 Stream4GH."""
13 pass