from __future__ import annotations from typing import TYPE_CHECKING, Tuple if TYPE_CHECKING: from sampy.server import Server class Game: @staticmethod async def on_packet(server: Server, packet: bytes, addr: Tuple[str, int]) -> bool: return False