Skip to content

Commit

Permalink
chore: Sort imports in runner.py for better organization and readability
Browse files Browse the repository at this point in the history
  • Loading branch information
derrix060 committed Jun 28, 2024
1 parent 9152ebe commit 2b26d5a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions awslimitchecker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2b26d5a

Please sign in to comment.