Skip to content

Commit 39dd1e0

Browse files
committed
Typo fix
1 parent 7d8bc9e commit 39dd1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

can/io/mf4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def __init__(self, mdf: MDF, group_index: int, start_timestamp: float, name: str
295295
self._channel_names = []
296296

297297
for channel in channel_group.channels:
298-
if channel.name.startwith(f"{self._name}."):
298+
if str(channel.name).startswith(f"{self._name}."):
299299
self._channel_names.append(channel.name)
300300

301301
return

0 commit comments

Comments
 (0)