def bucket_count()

in lib/metric-config-parser/metric_config_parser/experiment.py [0:0]


    def bucket_count(self) -> Optional[int]:
        if hasattr(self.experiment, "bucket_config") and self.experiment.bucket_config is not None:
            return self.experiment.bucket_config.count

        return None