Coverage for src / ezpl / types / enums / __init__.py: 100.00%

4 statements  

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

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

2# EZPL - Enums Module 

3# Project: ezpl 

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

5 

6""" 

7Enums module for Ezpl logging framework. 

8 

9This module contains all enumeration types used in Ezpl. 

10""" 

11 

12from __future__ import annotations 

13 

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

15# IMPORTS 

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

17# Local imports 

18from .log_level import LogLevel 

19from .patterns import ( 

20 PATTERN_COLORS, 

21 Pattern, 

22 get_pattern_color, 

23 get_pattern_color_by_name, 

24) 

25 

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

27# PUBLIC API 

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

29 

30__all__ = [ 

31 # Log level exports 

32 "LogLevel", 

33 # Pattern exports 

34 "Pattern", 

35 "PATTERN_COLORS", 

36 "get_pattern_color", 

37 "get_pattern_color_by_name", 

38]