Coverage for src/P4OO/_Connection.py: 83%

6 statements  

« prev     ^ index     » next       coverage.py v7.4.1, created at 2024-09-07 17:17 +0000

1###################################################################### 

2# Copyright (c)2011-2012,2024 David L. Armstrong. 

3# 

4# P4OO._Connection.py 

5# 

6###################################################################### 

7 

8from dataclasses import dataclass, field 

9from P4OO._Base import _P4OOBase 

10 

11@dataclass 

12class _P4OOConnection(_P4OOBase): 

13 """ 

14 Mostly Empty class, providing the inheritance path to _Base. 

15 """ 

16 def __post_init__(self): 

17 self._p4PythonSchema = None