-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
toolbox/supsisim: refactor SHV part of the code
This refactors SHV part of the code. The SHV tree generation and client connection is moved to a separate subdirectory and unified with Class access. The goal is to provide more clear access to SHV package and simplify the future enhancement and maintenance of the code. The functionality of SHV generation/connection is not changed. Signed-off-by: Michal Lenc <[email protected]>
- Loading branch information
1 parent
c8b7382
commit d04cbaf
Showing
8 changed files
with
917 additions
and
574 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Implementation of SHV tree generation and communication via pySHV.""" | ||
|
||
from .client import ShvClient | ||
from .generator import ShvTreeGenerator | ||
|
||
__all__ = [ | ||
"ShvClient", | ||
"ShvTreeGenerator", | ||
] |
Oops, something went wrong.