(organisation: Organisation)
| 91 | |
| 92 | |
| 93 | def is_experiment_feature_enabled(organisation: Organisation) -> bool: |
| 94 | return get_openfeature_client().get_boolean_value( |
| 95 | EXPERIMENT_FLAG, |
| 96 | default_value=False, |
| 97 | evaluation_context=organisation.openfeature_evaluation_context, |
| 98 | ) |
| 99 | |
| 100 | |
| 101 | @lru_cache(maxsize=1) |
no test coverage detected
searching dependent graphs…