Skip to content

Commit

Permalink
remove unused loggers (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Jun 27, 2023
1 parent 92ea0ac commit 16704dd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions piccolo_api/crud/endpoints.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import itertools
import logging
import typing as t
import uuid
from collections import defaultdict
Expand Down Expand Up @@ -49,9 +48,6 @@
from starlette.routing import BaseRoute


logger = logging.getLogger(__name__)


OPERATOR_MAP = {
"lt": LessThan,
"lte": LessEqualThan,
Expand Down
4 changes: 0 additions & 4 deletions piccolo_api/media/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import abc
import asyncio
import itertools
import logging
import pathlib
import string
import typing as t
Expand All @@ -12,9 +11,6 @@
from piccolo.apps.user.tables import BaseUser
from piccolo.columns.column_types import Array, Text, Varchar

logger = logging.getLogger(__name__)


#: Pass into ``allowed_characters`` to just allow audio files.
AUDIO_EXTENSIONS = (
"mp3",
Expand Down
4 changes: 0 additions & 4 deletions piccolo_api/shared/auth/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import dataclasses
import inspect
import logging
import typing as t

PreLoginHook = t.Union[
Expand All @@ -19,9 +18,6 @@
]


logger = logging.getLogger(__name__)


@dataclasses.dataclass
class LoginHooks:
"""
Expand Down

0 comments on commit 16704dd

Please sign in to comment.