From a753b6a11af4dbdc17659080328ba24867941557 Mon Sep 17 00:00:00 2001 From: Florian Spreckelsen <f.spreckelsen@indiscale.com> Date: Thu, 12 Sep 2024 11:27:56 +0200 Subject: [PATCH] MAINT: Remove unused logger --- src/caoscrawler/sync_node.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/caoscrawler/sync_node.py b/src/caoscrawler/sync_node.py index 1acb5493..d35b49c1 100644 --- a/src/caoscrawler/sync_node.py +++ b/src/caoscrawler/sync_node.py @@ -22,7 +22,6 @@ from __future__ import annotations -import logging from typing import TYPE_CHECKING, Any, Optional, Union import linkahead as db @@ -35,8 +34,6 @@ from .exceptions import ImpossibleMergeError if TYPE_CHECKING: from .identifiable import Identifiable -logger = logging.getLogger(__name__) - class TempID(int): """A special kind of int for negative temporary IDs. -- GitLab