Coverage for foran/render.py: 100.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.0.1, created at 2023-01-02 19:51 +0100

1"""In front or behind (Foran eller bagved)? rendering interface for templates.""" 

2from enum import Enum, auto 

3 

4 

5class Template(Enum): 

6 NONE = auto() 

7 STRING = auto() 

8 F_STRING = auto() 

9 JINJA_STRING = auto() 

10 JINJA_PATH = auto()