-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add interface modules to __all__ (#1568)
- Loading branch information
1 parent
1f2f29c
commit af52622
Showing
13 changed files
with
61 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
""" | ||
""" | ||
|
||
__all__ = [ | ||
"CANLIBInitializationError", | ||
"CANLIBOperationError", | ||
"KvaserBus", | ||
"canlib", | ||
"constants", | ||
"get_channel_info", | ||
"structures", | ||
] | ||
|
||
from can.interfaces.kvaser.canlib import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
""" Neousys CAN bus driver """ | ||
|
||
__all__ = ["NeousysBus"] | ||
__all__ = [ | ||
"NeousysBus", | ||
"neousys", | ||
] | ||
|
||
from can.interfaces.neousys.neousys import NeousysBus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
__all__ = [ | ||
"PcanBus", | ||
"PcanError", | ||
"basic", | ||
"pcan", | ||
] | ||
|
||
from can.interfaces.pcan.pcan import PcanBus, PcanError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
""" | ||
""" | ||
|
||
__all__ = ["SeeedBus"] | ||
__all__ = [ | ||
"SeeedBus", | ||
"seeedstudio", | ||
] | ||
|
||
from can.interfaces.seeedstudio.seeedstudio import SeeedBus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
""" | ||
""" | ||
|
||
__all__ = ["SerialBus"] | ||
__all__ = [ | ||
"SerialBus", | ||
"serial_can", | ||
] | ||
|
||
from can.interfaces.serial.serial_can import SerialBus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
__all__ = ["UcanBus"] | ||
__all__ = [ | ||
"UcanBus", | ||
"constants", | ||
"exceptions", | ||
"structures", | ||
"ucan", | ||
"ucanbus", | ||
] | ||
|
||
from can.interfaces.systec.ucanbus import UcanBus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
"""A module to allow CAN over UDP on IPv4/IPv6 multicast.""" | ||
|
||
__all__ = ["UdpMulticastBus"] | ||
__all__ = [ | ||
"UdpMulticastBus", | ||
"bus", | ||
"utils", | ||
] | ||
|
||
from .bus import UdpMulticastBus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters