Skip to content

Commit

Permalink
Autoscaling: Format code using isort
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Mar 6, 2024
1 parent c7a0dae commit 5e1070d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions topic/autoscaling/autoscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
based on its Prometheus metrics endpoint.
"""

import argparse
import logging
import time
import os
import argparse
from functools import reduce
import time
from datetime import datetime
from prometheus_client.parser import text_string_to_metric_families
from functools import reduce

import requests
from prometheus_client.parser import text_string_to_metric_families
from requests.auth import HTTPBasicAuth


# Date format for parsing datetime strings
DATE_FORMAT = "%Y-%m-%dT%H:%M:%S.%f"

Expand Down

0 comments on commit 5e1070d

Please sign in to comment.