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: