Skip to content

Export symbols to satisfy type checkers #1551

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix CI
  • Loading branch information
zariiii9003 committed Mar 30, 2023
commit 81a610820fa34c71461e6027334193b55c50043e
2 changes: 2 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,8 @@ known-standard-library=
# Force import order to recognize a module as part of a third party library.
known-third-party=enchant

# Allow explicit reexports by alias from a package __init__
allow-reexport-from-package=yes

[CLASSES]

Expand Down
2 changes: 2 additions & 0 deletions can/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from . import interface as interface
from .bit_timing import BitTiming as BitTiming
from .bit_timing import BitTimingFd as BitTimingFd
from .broadcastmanager import ModifiableCyclicTaskABC as ModifiableCyclicTaskABC
from .broadcastmanager import RestartableCyclicTaskABC as RestartableCyclicTaskABC
from .bus import BusABC as BusABC
from .bus import BusState as BusState
from .exceptions import CanError as CanError
Expand Down