| 122 | |
| 123 | |
| 124 | class FeatureEvaluationBucket(AbstractBucket): |
| 125 | feature_name = models.CharField(max_length=2000) |
| 126 | |
| 127 | @hook(BEFORE_CREATE) |
| 128 | def check_overlapping_buckets(self): # type: ignore[no-untyped-def] |
| 129 | filter = models.Q(feature_name=self.feature_name) |
| 130 | super().check_overlapping_buckets(filter) # type: ignore[no-untyped-call] |
no outgoing calls
no test coverage detected
searching dependent graphs…