Remove unused logging

This commit is contained in:
2025-02-04 19:06:36 +01:00
parent 90a72130df
commit e022a6bc1e
12 changed files with 0 additions and 40 deletions
-3
View File
@@ -1,13 +1,10 @@
from functools import wraps
import logging
from typing import Callable, ParamSpec, Tuple, Union
from werkzeug.wrappers.response import Response
from .error import error
logger = logging.getLogger(__name__)
# Decorator type hinting is hard.
# What a view can return (str or Response or (Response, xxx))
ViewReturn = Union[