Skip to content

Commit

Permalink
remove loguru invocations
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarx committed Mar 4, 2023
1 parent 36ccc04 commit e745a52
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/keyframed/curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,12 +740,8 @@ def __add__(self, other) -> 'Composition':
if isinstance(other, ParameterGroup) and not isinstance(other, type(self)):
return NotImplemented

from loguru import logger
logger.debug((self.label, self))
logger.debug(other)
if not isinstance(other, CurveBase):
other = Curve(other)
logger.debug(other.label)

pg_copy = self.copy()
if self.reduction in ('sum', 'add'):
Expand Down

0 comments on commit e745a52

Please sign in to comment.