Coverage for rendercv/themes/__init__.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2025-01-26 00:25 +0000

1""" 

2The `rendercv.themes` package contains all the built-in templates and the design data 

3models for the themes. 

4""" 

5 

6from .classic import ClassicThemeOptions 

7from .engineeringclassic import EngineeringclassicThemeOptions 

8from .engineeringresumes import EngineeringresumesThemeOptions 

9from .moderncv import ModerncvThemeOptions 

10from .sb2nov import Sb2novThemeOptions 

11 

12__all__ = [ 

13 "ClassicThemeOptions", 

14 "EngineeringclassicThemeOptions", 

15 "EngineeringresumesThemeOptions", 

16 "ModerncvThemeOptions", 

17 "Sb2novThemeOptions", 

18]