Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
francbartoli committed Apr 5, 2024
1 parent 4f37104 commit 9b7abd9
Show file tree
Hide file tree
Showing 21 changed files with 0 additions and 21 deletions.
1 change: 0 additions & 1 deletion app/auth/auth_interface.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Auth interface module."""

from abc import ABC
from abc import abstractmethod
from typing import Dict
Expand Down
1 change: 0 additions & 1 deletion app/auth/auth_jwks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Auth JWKS module."""

import typing
from dataclasses import dataclass
from dataclasses import field
Expand Down
1 change: 0 additions & 1 deletion app/auth/oauth2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""OAuth2 provider module."""

import re
from abc import ABC
from abc import abstractmethod
Expand Down
1 change: 0 additions & 1 deletion app/config/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""App configuration module."""

from functools import lru_cache
from typing import Optional

Expand Down
1 change: 0 additions & 1 deletion app/config/auth.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Authn and Authz module."""

from app.auth.auth_jwks import JWKSAuthentication
from app.auth.auth_jwks import JWKSConfig
from app.auth.oauth2 import Oauth2Provider
Expand Down
1 change: 0 additions & 1 deletion app/config/logging.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Logging module."""

import logging
import sys
from pathlib import Path
Expand Down
1 change: 0 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Main module."""

import os
import sys
from pathlib import Path
Expand Down
1 change: 0 additions & 1 deletion app/middleware/oauth2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""OAuth2 middleware module."""

import asyncio
import re
from typing import List
Expand Down
1 change: 0 additions & 1 deletion app/middleware/pygeoapi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Openapi middleware module."""

from typing import Any
from typing import Dict
from typing import List
Expand Down
1 change: 0 additions & 1 deletion app/pygeoapi/openapi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Override vanilla openapi module."""

from typing import List

from app.config.app import configuration as cfg
Expand Down
1 change: 0 additions & 1 deletion app/schemas/logging.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Logging module."""

from pathlib import Path

from pydantic import BaseModel
Expand Down
1 change: 0 additions & 1 deletion app/utils/app_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""App exceptions module."""

from fastapi import Request
from starlette.responses import JSONResponse

Expand Down
1 change: 0 additions & 1 deletion app/utils/get_list_of_app_exceptions_for_frontend.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""App exceptions for frontend module."""

from app.config.logging import create_logger
from app.utils.app_exceptions import AppException

Expand Down
1 change: 0 additions & 1 deletion app/utils/request_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Request exceptions module."""

from fastapi.encoders import jsonable_encoder
from fastapi.exceptions import RequestValidationError
from starlette.exceptions import HTTPException
Expand Down
1 change: 0 additions & 1 deletion app/utils/service_result.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Service result module."""

import inspect

from app.config.logging import create_logger
Expand Down
1 change: 0 additions & 1 deletion cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Command-line interface."""

import os
from pathlib import Path

Expand Down
1 change: 0 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Nox sessions."""

import os
import shutil
import sys
Expand Down
1 change: 0 additions & 1 deletion scripts/docker/build.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Build the Dockerfile."""

import logging
import shlex
import shutil
Expand Down
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Configuration for tests."""

import os
import sys
from unittest import mock
Expand Down
1 change: 0 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Test cases for the cli module."""

from cli import app
from typer.testing import CliRunner

Expand Down
1 change: 0 additions & 1 deletion tests/test_openapi_contract.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""OpenAPI contract tests module."""

import schemathesis


Expand Down

0 comments on commit 9b7abd9

Please sign in to comment.