From 1e1efa2402f6949fc935a44b39e943f6f42cb9c4 Mon Sep 17 00:00:00 2001 From: WindowsSov8forUs Date: Thu, 16 May 2024 08:35:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=94=B9=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=B1=BB=E5=9E=8B=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- tsugu_api/_typing.py | 4 ++-- tsugu_api_async/_typing.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index f5bb9a8..dff3bae 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='tsugu-api-python', - version='1.1.3', + version='1.1.4', author='WindowsSov8', author_email='qwertyuiop2333@hotmail.com', description='Tsugu BanGDream Bot 的功能 API 统合包', diff --git a/tsugu_api/_typing.py b/tsugu_api/_typing.py index 864d3af..124ffca 100644 --- a/tsugu_api/_typing.py +++ b/tsugu_api/_typing.py @@ -86,8 +86,8 @@ class _TsuguUser(TypedDict): '''用户数据''' user_id: str platform: str - server_mode: _Server - default_server: list[_Server] + server_mode: _ServerId + default_server: list[_ServerId] car: bool server_list: list[_TsuguUserServer] diff --git a/tsugu_api_async/_typing.py b/tsugu_api_async/_typing.py index 37673a7..75b6e62 100644 --- a/tsugu_api_async/_typing.py +++ b/tsugu_api_async/_typing.py @@ -91,8 +91,8 @@ class _TsuguUser(TypedDict): '''用户数据''' user_id: str platform: str - server_mode: _Server - default_server: list[_Server] + server_mode: _ServerId + default_server: list[_ServerId] car: bool server_list: list[_TsuguUserServer]