(organisation: Organisation)
| 83 | |
| 84 | |
| 85 | def is_warehouse_feature_enabled(organisation: Organisation) -> bool: |
| 86 | return get_openfeature_client().get_boolean_value( |
| 87 | WAREHOUSE_CONNECTION_FLAG, |
| 88 | default_value=False, |
| 89 | evaluation_context=organisation.openfeature_evaluation_context, |
| 90 | ) |
| 91 | |
| 92 | |
| 93 | def is_experiment_feature_enabled(organisation: Organisation) -> bool: |
no test coverage detected
searching dependent graphs…