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

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-10-07 17:51 +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 .engineeringresumes import EngineeringresumesThemeOptions 

8from .moderncv import ModerncvThemeOptions 

9from .sb2nov import Sb2novThemeOptions 

10 

11__all__ = [ 

12 "ClassicThemeOptions", 

13 "EngineeringresumesThemeOptions", 

14 "ModerncvThemeOptions", 

15 "Sb2novThemeOptions", 

16]