Coverage for pyquickhelper/helpgen/post_process_custom.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-03 02:21 +0200

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Custom functions to post process latex output before compiling it. 

5""" 

6 

7 

8def find_custom_latex_processing(name): 

9 """ 

10 Determines the corresponding post processing function 

11 associated to name. 

12 """ 

13 raise ValueError( # pragma: no cover 

14 f"Unable to find any post processing function associated to '{name}'")