diff options
| author | J08nY | 2021-04-11 14:16:57 +0200 |
|---|---|---|
| committer | J08nY | 2021-04-11 14:16:57 +0200 |
| commit | 942c0fb9d6fcbff7c91c553211cc81c7e0939e4e (patch) | |
| tree | 1df80da6030019ef2a7490d2b2050a7d4b9a83ec /pyecsca/sca/target/ectester.py | |
| parent | a2e01e037fcde3e63571633e94156e324a4f2299 (diff) | |
| download | pyecsca-942c0fb9d6fcbff7c91c553211cc81c7e0939e4e.tar.gz pyecsca-942c0fb9d6fcbff7c91c553211cc81c7e0939e4e.tar.zst pyecsca-942c0fb9d6fcbff7c91c553211cc81c7e0939e4e.zip | |
Make docstring style changes as per pydocstyle.
Diffstat (limited to 'pyecsca/sca/target/ectester.py')
| -rw-r--r-- | pyecsca/sca/target/ectester.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/pyecsca/sca/target/ectester.py b/pyecsca/sca/target/ectester.py index 08c0e02..4057e61 100644 --- a/pyecsca/sca/target/ectester.py +++ b/pyecsca/sca/target/ectester.py @@ -1,6 +1,4 @@ -""" -This module provides an `ECTester <https://github.com/crocs-muni/ECTester/>`_ target class. -""" +"""This module provides an `ECTester <https://github.com/crocs-muni/ECTester/>`_ target class.""" from abc import ABC from binascii import hexlify from enum import IntEnum, IntFlag @@ -511,10 +509,7 @@ class InfoResponse(Response): # pragma: no cover @public class ECTesterTarget(PCSCTarget): # pragma: no cover - """ - A smartcard target which communicates with the `ECTester <https://github.com/crocs-muni/ECTester>`_ - applet on smartcards of the JavaCard platform using PCSC. - """ + """Smartcard target which communicates with the `ECTester <https://github.com/crocs-muni/ECTester>`_ sapplet on smartcards of the JavaCard platform using PCSC.""" CLA_ECTESTER = 0xB0 AID_PREFIX = bytes([0x45, 0x43, 0x54, 0x65, 0x73, 0x74, 0x65, 0x72]) |
