refactor: replace star imports with explicit imports

This commit is contained in:
Jackson Vieira
2025-12-03 13:57:18 -03:00
parent 0126359ec3
commit 21115cca06
7 changed files with 42 additions and 8 deletions

View File

@@ -1,6 +1,16 @@
from typing import Optional
from typing import List, Optional
from ..models.chat import *
from ..models.chat import (
ArchiveChat,
CheckIsWhatsappNumber,
MediaMessage,
MessageKey,
Presence,
ProfilePicture,
ReadMessage,
UnreadChat,
UpdateMessage,
)
class ChatService: