Coverage for src/susi/io/state_link.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2025-06-13 14:15 +0000

1#!/usr/bin/env python3 

2# -*- coding: utf-8 -*- 

3""" 

4Module that provides state link class 

5 

6@author: hoelken 

7""" 

8from dataclasses import dataclass 

9 

10 

11@dataclass 

12class StateLink: 

13 """DataItem to link files to mod-state""" 

14 state: int 

15 file: str 

16 fake_state: bool = False