Coverage for src / ezqt_widgets / widgets / __init__.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-01 22:46 +0000

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

2# WIDGETS - Widgets Package 

3# Project: ezqt_widgets 

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

5 

6""" 

7Widgets package. 

8 

9Groups widget modules under a single namespace. 

10""" 

11 

12from __future__ import annotations 

13 

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

15# IMPORTS 

16# /////////////////////////////////////////////////////////////// 

17# Local imports — import sub-packages so Pyright resolves them as package members 

18from . import ( 

19 button, 

20 input, # noqa: A004 

21 label, 

22 misc, 

23 shared, 

24) 

25 

26# /////////////////////////////////////////////////////////////// 

27# PUBLIC API 

28# /////////////////////////////////////////////////////////////// 

29 

30__all__ = [ 

31 "button", 

32 "input", 

33 "label", 

34 "misc", 

35 "shared", 

36]