Coverage for src/ramses_cli/__init__.py: 67%

6 statements  

« prev     ^ index     » next       coverage.py v7.11.3, created at 2026-01-05 21:44 +0100

1#!/usr/bin/env python3 

2"""A CLI for the ramses_rf library.""" 

3 

4from __future__ import annotations 

5 

6from typing import Final 

7 

8# 

9# NOTE: All debug flags should be False for deployment to end-users 

10_DBG_FORCE_CLI_DEBUGGING: Final[bool] = ( 

11 False # for debugging of CLI (usu. for click debugging) 

12) 

13 

14 

15if _DBG_FORCE_CLI_DEBUGGING: 

16 from .debug import start_debugging 

17 

18 start_debugging(True)