From eea60da5bf7233ce14b48784e79e5804b7ccdc70 Mon Sep 17 00:00:00 2001 From: Mario Apra Date: Thu, 27 Jun 2024 21:59:06 +0100 Subject: [PATCH] chore: Sort imports in runner.py for better organization and readability --- awslimitchecker/runner.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/awslimitchecker/runner.py b/awslimitchecker/runner.py index e9cb9145..25fc1732 100644 --- a/awslimitchecker/runner.py +++ b/awslimitchecker/runner.py @@ -37,19 +37,20 @@ ############################################################################## """ -import sys import argparse -import logging import json -import boto3 +import logging +import sys import time + +import boto3 import tabulate +from .alerts import AlertProvider from .checker import AwsLimitChecker -from .utils import StoreKeyValuePair, dict2cols, issue_string_tuple -from .limit import SOURCE_TA, SOURCE_API, SOURCE_QUOTAS +from .limit import SOURCE_API, SOURCE_QUOTAS, SOURCE_TA from .metrics import MetricsProvider -from .alerts import AlertProvider +from .utils import StoreKeyValuePair, dict2cols, issue_string_tuple try: from urllib.parse import urlparse