-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(ruff): 💄 be compliant with ruleset
- Loading branch information
1 parent
7fbeb19
commit 722a1c9
Showing
40 changed files
with
278 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Python Factory Core Module.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
""" | ||
Provides the Tag as Enum | ||
""" | ||
"""Provides the Tag as Enum.""" | ||
|
||
from enum import StrEnum, auto | ||
|
||
|
||
class TagEnum(StrEnum): | ||
"""Define Tag for OpenAPI Description.""" | ||
|
||
SYS = auto() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
""" | ||
Provide the configuration for the app server. | ||
""" | ||
"""Provide the configuration for the app server.""" | ||
|
||
from ..enums import EnvironmentEnum | ||
from .fastapi_application_abstract import FastAPIConfigAbstract | ||
|
||
|
||
class AppConfigAbstract(FastAPIConfigAbstract): | ||
"""Application configuration abstract class.""" | ||
|
||
environment: EnvironmentEnum | ||
service_name: str | ||
service_namespace: str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
""" | ||
Provides the exceptions for the application factory. | ||
""" | ||
"""Provides the exceptions for the application factory.""" | ||
|
||
|
||
class BaseApplicationException(BaseException): | ||
"""Base application exception.""" | ||
|
||
pass | ||
|
||
|
||
class ApplicationFactoryException(BaseApplicationException): | ||
"""Application factory exception.""" | ||
|
||
pass | ||
|
||
|
||
class ApplicationConfigFactoryException(BaseApplicationException): | ||
"""Application configuration factory exception.""" | ||
|
||
pass | ||
|
||
|
||
class ApplicationPluginManagerException(BaseApplicationException): | ||
"""Application plugin manager exception.""" | ||
|
||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.