Skip to content

Commit 8233183

Browse files
authored
Merge pull request #885 from SabrineBH/fix_logger_issue_in_Signal_class
Update Signal.py
2 parents a613eeb + 7bf913c commit 8233183

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/canmatrix/Signal.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,16 @@
2828
import attr
2929
from decimal import Decimal as DefaultFloatFactory
3030
import typing
31+
import logging
3132

3233
import canmatrix.types
3334
import canmatrix.exceptions
3435
from canmatrix.utils import normalize_value_table
3536
from canmatrix.FloatFactory import FloatFactory
3637

38+
39+
logger = logging.getLogger(__name__)
40+
3741
@attr.s(eq=False)
3842
class Signal(object):
3943
"""

0 commit comments

Comments
 (0)