From 49c6780c5baf1f21a1daa5ea56620cab6c7b0db7 Mon Sep 17 00:00:00 2001 From: helloplhm-qwq Date: Sat, 6 Jan 2024 14:13:33 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=88=A0=E9=99=A4=E8=B0=83=E8=AF=95?= =?UTF-8?q?=E7=94=A8=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 1 - modules/__init__.py | 1 - 2 files changed, 2 deletions(-) diff --git a/main.py b/main.py index 0648b16..e3ad773 100644 --- a/main.py +++ b/main.py @@ -120,7 +120,6 @@ async def handle(request): try: query = dict(request.query) - print(query) if (method in dir(modules) and query == {}): return handleResult(await getattr(modules, method)(source, songId, quality)) elif ((method + '_with_query') in dir(modules) and query != {}): diff --git a/modules/__init__.py b/modules/__init__.py index 15cd369..f665bd7 100644 --- a/modules/__init__.py +++ b/modules/__init__.py @@ -190,7 +190,6 @@ async def other(method, source, songid, _): } async def other_with_query(method, source, t, _, query): - print(method) try: func = require('modules.' + source + '.' + method) except: