Coverage for django_query_capture/presenter/__init__.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-11-20 10:20 +0000

1from django_query_capture.presenter.base import BasePresenter 

2from django_query_capture.presenter.only_slow_query import OnlySlowQueryPresenter 

3from django_query_capture.presenter.pretty import PrettyPresenter 

4from django_query_capture.presenter.raw_line import RawLinePresenter 

5from django_query_capture.presenter.simple import SimplePresenter 

6 

7__all__ = [ 

8 "BasePresenter", 

9 "RawLinePresenter", 

10 "PrettyPresenter", 

11 "SimplePresenter", 

12 "OnlySlowQueryPresenter", 

13]