Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
style: run ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NTGNguyen committed Dec 26, 2024
1 parent 5704286 commit 95a3f9e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
15 changes: 7 additions & 8 deletions src/check_phat_nguoi/modules/notify/message.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
from check_phat_nguoi.utils.constants import (
MESSAGE_MARKDOWN_PATTERN,
RESOLUTION_LOCATION_MARKDOWN_PATTERN,
DATETIME_FORMAT_CHECKPHATNGUOI,
)
from typing import Dict, LiteralString

from check_phat_nguoi.models.context.plate_context.plate_context import (
PlatesContextModel,
)
from check_phat_nguoi.models.context.plate_context.plate_info import (
PlateInfoContextModel,
)


from typing import Dict, LiteralString
from check_phat_nguoi.utils.constants import (
DATETIME_FORMAT_CHECKPHATNGUOI,
MESSAGE_MARKDOWN_PATTERN,
RESOLUTION_LOCATION_MARKDOWN_PATTERN,
)


class Message:
Expand Down
8 changes: 5 additions & 3 deletions src/check_phat_nguoi/modules/notify/telegram.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from logging import getLogger
from threading import Thread
from typing import LiteralString

import requests

from check_phat_nguoi.models.notify.telegram_notify import TelegramNotifyModel
from check_phat_nguoi.utils.constants import SEND_MESSAGE_API_URL_TELEGRAM as API_URL
import requests
from logging import getLogger
from threading import Thread

logger = getLogger(__name__)

Expand Down

0 comments on commit 95a3f9e

Please sign in to comment.