Skip to content

Commit

Permalink
Run updated black
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain-S committed Aug 7, 2024
1 parent 2c922e4 commit acf949a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions controller_function/run_now.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Force our Azure function to run, regardless of the time."""

import types

from controller import main
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration file for the Sphinx documentation builder."""

import os
import pathlib
import sys
Expand Down
1 change: 1 addition & 0 deletions status_function/run_now.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Force our Azure function to run, regardless of the time."""

import types

from status import main
Expand Down
1 change: 1 addition & 0 deletions usage_function/costmanagement/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""An Azure function to collect cost-management information."""

import logging
from datetime import datetime, timedelta
from typing import Final
Expand Down
1 change: 1 addition & 0 deletions usage_function/monthly_usage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""An Azure Function App to collect usage information for the previous month."""

import logging
import time
from datetime import datetime, timedelta
Expand Down
1 change: 1 addition & 0 deletions usage_function/run_costmanagement.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Force our Azure function to run, regardless of the time."""

import types

from costmanagement import main
Expand Down
1 change: 1 addition & 0 deletions usage_function/run_monthly_usage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Force our Azure function to run, regardless of the time."""

import types

from monthly_usage import main
Expand Down
1 change: 1 addition & 0 deletions usage_function/run_usage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Force our Azure function to run, regardless of the time."""

import types

from usage import main
Expand Down
1 change: 1 addition & 0 deletions usage_function/tests/test_function_app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for Azure functions."""

from datetime import date, datetime, timedelta
from typing import Final
from unittest import TestCase, main
Expand Down
1 change: 1 addition & 0 deletions usage_function/tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for function app utils."""

import logging
from datetime import date, datetime, timedelta
from typing import Final
Expand Down
6 changes: 3 additions & 3 deletions usage_function/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class Settings(BaseSettings):
LOG_LEVEL: str = "WARNING" # The log level
CM_MGMT_GROUP: Optional[str] = None # The cost management function mgmt group
MGMT_GROUP: Optional[str] = None # Either, the usage function mgmt group...
BILLING_ACCOUNT_ID: Optional[
str
] = None # ...or the usage function billing account ID
BILLING_ACCOUNT_ID: Optional[str] = (
None # ...or the usage function billing account ID
)
CENTRAL_LOGGING_CONNECTION_STRING: Optional[str] = None

# Settings for the settings class itself.
Expand Down

0 comments on commit acf949a

Please sign in to comment.