Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Linting / autoformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmackaij committed Feb 12, 2024
1 parent fb94f45 commit ed14f88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/OpenApiDriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Dto, Relation: Base classes that can be used for type annotations.
- IGNORE: A special constant that can be used as a value in the PropertyValueConstraint.
"""

from importlib.metadata import version

from OpenApiLibCore.dto_base import (
Expand Down
1 change: 1 addition & 0 deletions src/OpenApiDriver/openapi_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module holding the OpenApiReader reader_class implementation."""

from typing import Any, Dict, List, Union

from DataDriver.AbstractReaderClass import AbstractReaderClass
Expand Down
1 change: 1 addition & 0 deletions src/OpenApiDriver/openapidriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
- No support for per-path authorization levels (only simple 401 / 403 validation).
"""

from pathlib import Path
from typing import Any, Dict, Iterable, List, Optional, Tuple, Union

Expand Down
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import subprocess
from importlib.metadata import version

from invoke import task, Context
from invoke.context import Context
from invoke.tasks import task

from OpenApiDriver import openapidriver

Expand Down

0 comments on commit ed14f88

Please sign in to comment.