aboutsummaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index c7366a7..6ecfa62 100644
--- a/utils.py
+++ b/utils.py
@@ -87,6 +87,7 @@ def _unformat_hexdump(dump):
class APDU(list):
+ """Class for an APDU that mostly behaves like a list."""
OFFSET_CLA = 0
OFFSET_INS = 1
OFFSET_P1 = 2
@@ -98,7 +99,6 @@ class APDU(list):
LC_AUTO = None
- """Class for an APDU that mostly behaves like a list."""
def __init__(self, *args, **kwargs):
"""Creates a new APDU instance. Can be given positional parameters which
must be sequences of either strings (or strings themselves) or integers
@@ -195,6 +195,7 @@ class APDU(list):
return result
def get_string(self):
+ """Return the contents of this APDU as a binary string."""
return "".join([i is not None and chr(i) or "?" for i in self])
if __name__ == "__main__":