From 901a97fbe2f7c00066c0fcf19be71f7a5e20d522 Mon Sep 17 00:00:00 2001 From: Jeremy Kubica <104161096+jeremykubica@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:08:11 -0500 Subject: [PATCH] Remove unneeded logger --- src/tdastro/math_nodes/basic_math_node.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/tdastro/math_nodes/basic_math_node.py b/src/tdastro/math_nodes/basic_math_node.py index 899b2d0..f05b0d9 100644 --- a/src/tdastro/math_nodes/basic_math_node.py +++ b/src/tdastro/math_nodes/basic_math_node.py @@ -5,7 +5,6 @@ """ import ast -import logging # Disable unused import because we need all of these imported # so they can be used during evaluation of the node. @@ -16,8 +15,6 @@ from tdastro.base_models import FunctionNode -logger = logging.getLogger(__name__) - class BasicMathNode(FunctionNode): """A node that evaluates basic mathematical functions.