diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-10-01 19:01:39 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-10-13 15:53:14 +0200 |
commit | 95d11271b46a46788d497481d03177e883c8554e (patch) | |
tree | 2fe5c2bcbbb8a2c42c050db30948963b47c0b1ea /decoders/jtag_stm32 | |
parent | 0b6bc7f9554c0980153563b6a3d16c3642fc4651 (diff) | |
download | libsigrokdecode-95d11271b46a46788d497481d03177e883c8554e.tar.gz libsigrokdecode-95d11271b46a46788d497481d03177e883c8554e.zip |
All PDs: Only import the 'Decoder' object.
Anything else in the pd.py files doesn't have to be imported/exposed.
Diffstat (limited to 'decoders/jtag_stm32')
-rw-r--r-- | decoders/jtag_stm32/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/jtag_stm32/__init__.py b/decoders/jtag_stm32/__init__.py index 2b091fb..9d60c1c 100644 --- a/decoders/jtag_stm32/__init__.py +++ b/decoders/jtag_stm32/__init__.py @@ -27,4 +27,4 @@ https://en.wikipedia.org/wiki/STM32 http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/REFERENCE_MANUAL/CD00171190.pdf (e.g. chapter 31.7: "JTAG debug port") ''' -from .pd import * +from .pd import Decoder |