Coverage for src / ezpl / handlers / wizard / __init__.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-13 19:35 +0000

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

2# EZPL - Wizard Module 

3# Project: ezpl 

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

5 

6""" 

7Wizard module for Ezpl logging framework. 

8 

9This module provides the RichWizard class for advanced Rich-based display 

10capabilities including panels, tables, JSON, and progress bars. 

11""" 

12 

13from __future__ import annotations 

14 

15# /////////////////////////////////////////////////////////////// 

16# IMPORTS 

17# /////////////////////////////////////////////////////////////// 

18# Local imports 

19from .core import RichWizard 

20 

21# /////////////////////////////////////////////////////////////// 

22# PUBLIC API 

23# /////////////////////////////////////////////////////////////// 

24 

25__all__ = [ 

26 # Wizard public API 

27 "RichWizard", 

28]