src/python/detectors/mutually_exclusive_calls_found/mutually_exclusive_calls_found.py [7:19]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    client = boto3.client('cloudwatch', region_name='eu-west-1')
    datapoints = client.get_metric_statistics(
        Namespace='CloudWatchSdkTest',
        MetricName='PythonBotoTestMetric',
        Dimensions=[
            {
                'Name': 'DimensionName',
                'Value': 'DimensionValue'
            },
        ],
        EndTime=datetime.datetime.now(datetime.timezone.utc),
        StartTime=EndTime - datetime.timedelta(days=1),
        Period=300,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/python/detectors/mutually_exclusive_calls_found/mutually_exclusive_calls_found.py [34:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    client = boto3.client('cloudwatch', region_name='eu-west-1')
    datapoints = client.get_metric_statistics(
        Namespace='CloudWatchSdkTest',
        MetricName='PythonBotoTestMetric',
        Dimensions=[
            {
                'Name': 'DimensionName',
                'Value': 'DimensionValue'
            },
        ],
        EndTime=datetime.datetime.now(datetime.timezone.utc),
        StartTime=EndTime - datetime.timedelta(days=1),
        Period=300,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



