diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-12 21:43:19 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-12 22:31:06 +0100 |
commit | eb7082c98efad727d88e3ebeadcd496fa948475b (patch) | |
tree | abfb7e7bab9bb56fc51cd182b7e8328bb697b40a /decoders/uart.py | |
parent | 56202222ed83ff030239bb23be8296574674c4f7 (diff) | |
download | libsigrokdecode-eb7082c98efad727d88e3ebeadcd496fa948475b.tar.gz libsigrokdecode-eb7082c98efad727d88e3ebeadcd496fa948475b.zip |
srd: Decoders: Cosmetics and whitespace fixes.
- Remove superfluous whitespace.
- Add URLs and more info.
- Consistently use ' instead of " for Python strings.
Diffstat (limited to 'decoders/uart.py')
-rw-r--r-- | decoders/uart.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/decoders/uart.py b/decoders/uart.py index 24b5ba3..9243bbc 100644 --- a/decoders/uart.py +++ b/decoders/uart.py @@ -219,15 +219,15 @@ class Decoder(srd.Decoder): } annotations = [ # ANN_ASCII - ["ASCII", "TODO: description"], + ['ASCII', 'TODO: description'], # ANN_DEC - ["Decimal", "TODO: description"], + ['Decimal', 'TODO: description'], # ANN_HEX - ["Hex", "TODO: description"], + ['Hex', 'TODO: description'], # ANN_OCT - ["Octal", "TODO: description"], + ['Octal', 'TODO: description'], # ANN_BITS - ["Bits", "TODO: description"], + ['Bits', 'TODO: description'], ] def __init__(self, **kwargs): |