Coverage for src/mlopus/utils/common.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-07-13 14:49 +0000

1from typing import Any 

2 

3 

4def is_empty(val: Any) -> bool: 

5 """Tell if value is None or an empty container.""" 

6 if isinstance(val, bool): 

7 return False 

8 return not bool(val)