Coverage for src / ezqt_app / shared / __init__.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-26 07:07 +0000

1# /////////////////////////////////////////////////////////////// 

2# SHARED - Éléments partagés (dataclasses, result, types) 

3# Project: ezqt_app 

4# /////////////////////////////////////////////////////////////// 

5 

6""" 

7Ce module regroupe les éléments partagés (resources) pour la bibliothèque ezqt_app. 

8""" 

9 

10from __future__ import annotations 

11 

12# /////////////////////////////////////////////////////////////// 

13# IMPORTS 

14# /////////////////////////////////////////////////////////////// 

15# Local imports 

16from .resources import Icons, Images 

17 

18# /////////////////////////////////////////////////////////////// 

19# PUBLIC API 

20# /////////////////////////////////////////////////////////////// 

21__all__ = [ 

22 "Icons", 

23 "Images", 

24]