We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2e0fe6 commit 11cfac6Copy full SHA for 11cfac6
1 file changed
test/logformats_test.py
@@ -690,10 +690,13 @@ def test_write(self):
690
("Sep 30 15:06:13.191 am 2017", 1506776773.191),
691
]
692
)
693
- def test_datetime_to_timestamp(self, datetime_string: str, expected_timestamp: float):
+ def test_datetime_to_timestamp(
694
+ self, datetime_string: str, expected_timestamp: float
695
+ ):
696
timestamp = can.ASCReader._datetime_to_timestamp(datetime_string)
697
self.assertAlmostEqual(timestamp, expected_timestamp)
698
699
+
700
class TestBlfFileFormat(ReaderWriterTest):
701
"""Tests can.BLFWriter and can.BLFReader.
702
0 commit comments