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
« 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# ///////////////////////////////////////////////////////////////
6"""
7Widgets package.
9Groups widget modules under a single namespace.
10"""
12from __future__ import annotations
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)
26# ///////////////////////////////////////////////////////////////
27# PUBLIC API
28# ///////////////////////////////////////////////////////////////
30__all__ = [
31 "button",
32 "input",
33 "label",
34 "misc",
35 "shared",
36]