Rename packed file to peer_ref

This commit is contained in:
Lonami Exo 2024-03-17 13:17:03 +01:00
parent c95e979119
commit 7e413e4ee2
3 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from .hash_cache import ChatHashCache from .hash_cache import ChatHashCache
from .packed import PackedChat, PackedType from .peer_ref import PackedChat, PackedType
__all__ = ["ChatHashCache", "PackedChat", "PackedType"] __all__ = ["ChatHashCache", "PackedChat", "PackedType"]

View File

@ -1,7 +1,7 @@
from typing import Any, Optional, Sequence from typing import Any, Optional, Sequence
from ...tl import abcs, types from ...tl import abcs, types
from .packed import PackedChat, PackedType from .peer_ref import PackedChat, PackedType
class ChatHashCache: class ChatHashCache: