Coverage for src / ezqt_app / shared / resources / images.py: 100.00%

3 statements  

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

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

2# SHARED.RESOURCES.IMAGES - Images registry 

3# Project: ezqt_app 

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

5 

6""" 

7Shared image resource registry. 

8""" 

9 

10from __future__ import annotations 

11 

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

13# CLASSES 

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

15 

16 

17class Images: 

18 """ 

19 Application image management class. 

20 

21 This class contains paths to images 

22 used in the application. 

23 """ 

24 

25 logo_placeholder: str = ":/images/logo-placeholder.jpg"