Skip to content

Commit

Permalink
Fixes for ruff sake
Browse files Browse the repository at this point in the history
  • Loading branch information
xfenix committed Dec 31, 2023
1 parent d54771f commit 9e92b25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _update_readme() -> None:
env_prefix_value: typing.Final = SETTINGS.model_config["env_prefix"]
for one_field_name, field_properties in SETTINGS.model_fields.items():
if field_properties.description is None:
print("-", one_field_name, "not be available in README")
print("-", one_field_name, "not be available in README") # noqa: T201
continue
default_value_beautified: str = (
"empty string"
Expand Down
1 change: 1 addition & 0 deletions whole_app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import toml
from pydantic_settings import BaseSettings


LOGGER_OBJ: typing.Final = structlog.get_logger()
PATH_TO_PYPROJECT: typing.Final = pathlib.Path(__file__).parent.parent / "pyproject.toml"
AvailableLanguagesType = typing.Literal[
Expand Down

0 comments on commit 9e92b25

Please sign in to comment.