We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18b86ba commit 057b677Copy full SHA for 057b677
1 file changed
can/interfaces/__init__.py
@@ -48,7 +48,9 @@
48
BACKENDS.update(
49
{
50
# This cast in wrong if interface.value is formatted badly, but we just fail later
51
- interface.name: cast(Tuple[str, str], tuple(interface.value.split(":", maxsplit=1)))
+ interface.name: cast(
52
+ Tuple[str, str], tuple(interface.value.split(":", maxsplit=1))
53
+ )
54
for interface in entry_points().get("can.interface", [])
55
}
56
)
0 commit comments