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

6 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-06 13:12 +0000

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

2# UTILS - Fonctions utilitaires 

3# Project: ezqt_app 

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

5 

6""" 

7Ce module regroupe les fonctions utilitaires pour la bibliothèque ezqt_app. 

8""" 

9 

10from __future__ import annotations 

11 

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

13# IMPORTS 

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

15# Local imports 

16from .diagnostics import info_user, warn_tech, warn_user 

17from .printer import get_printer 

18from .qt_runtime import ( 

19 configure_qt_environment, 

20 configure_qt_high_dpi, 

21 configure_qt_high_dpi_early, 

22) 

23from .runtime_paths import APP_PATH 

24 

25# /////////////////////////////////////////////////////////////// 

26# PUBLIC API 

27# /////////////////////////////////////////////////////////////// 

28__all__ = [ 

29 "APP_PATH", 

30 "configure_qt_environment", 

31 "configure_qt_high_dpi", 

32 "configure_qt_high_dpi_early", 

33 "info_user", 

34 "get_printer", 

35 "warn_tech", 

36 "warn_user", 

37]