Skip to content

Commit

Permalink
style: formated text
Browse files Browse the repository at this point in the history
  • Loading branch information
erfjab committed Dec 8, 2024
1 parent 01e0c96 commit 5298e16
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions holderbot/settings/env/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pydantic_settings import BaseSettings, SettingsConfigDict


class EnvSetup(BaseSettings):
""".env file config data"""

Expand Down
1 change: 1 addition & 0 deletions holderbot/settings/lang/keyboard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pydantic_settings import BaseSettings, SettingsConfigDict


class KeyboardTextSetup(BaseSettings):
"""keyboard text file config data"""

Expand Down
1 change: 1 addition & 0 deletions holderbot/settings/lang/message.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pydantic_settings import BaseSettings, SettingsConfigDict


class MessageTextSetup(BaseSettings):
"""message text file config data"""

Expand Down
2 changes: 2 additions & 0 deletions holderbot/settings/log/log.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import logging


class LoggerSetup:
"""setup projcet logger"""

def __init__(self, name: str, level: int = logging.INFO):
self.bot_logger = logging.getLogger(name)
self.bot_logger.setLevel(level)
Expand Down

0 comments on commit 5298e16

Please sign in to comment.