# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.1# SPDX-License-Identifier: Apache-2.02"""Module for common statistic tests baselines providers."""34from abc import ABC, abstractmethod5from framework.utils import DictQuery678# pylint: disable=R09039class Provider(ABC):10"""Baselines provider abstract class."""1112def __init__(self, baselines: DictQuery):13"""Block baseline provider initialization."""14self._baselines = baselines1516@abstractmethod17def get(self, ms_name: str, st_name: str) -> dict:18"""Return the baselines corresponding to the `ms_name` and `st_name`...1920...combination.21"""222324