From 39ad51a832f1e236db6a274595d90b160b948337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D1=80=D0=B5=D0=B4=D1=80=D0=B0=D0=B3=20=D0=9D=D0=B8?= =?UTF-8?q?=D0=BA=D0=BE=D0=BB=D0=B8=D1=9B?= Date: Thu, 4 Jul 2024 12:21:18 +0200 Subject: [PATCH] sort lines --- plugin/core/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/core/protocol.py b/plugin/core/protocol.py index 35d599992..d810d40d4 100644 --- a/plugin/core/protocol.py +++ b/plugin/core/protocol.py @@ -3,8 +3,8 @@ from enum import IntEnum, IntFlag from functools import total_ordering from typing import Any, Dict, Generic, Iterable, List, Literal, Mapping, TypedDict, TypeVar, Union -import sublime from typing_extensions import NotRequired, TypeGuard +import sublime INT_MAX = 2**31 - 1 UINT_MAX = INT_MAX