aboutsummaryrefslogtreecommitdiff
path: root/tests/doubles.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-12-22 10:10:54 +0800
committerGitHub <noreply@github.com>2021-12-21 21:10:54 -0500
commit99eb9ec2c4543ca8c9eeb153ea14c8d7db65d8b2 (patch)
tree6bfc8014eb179228a64a6df62c2a2de2c9c84732 /tests/doubles.py
parent063136b99e98fc8b0e2781c2f061dc388f81508a (diff)
downloadpyca-cryptography-99eb9ec2c4543ca8c9eeb153ea14c8d7db65d8b2.zip
pyca-cryptography-99eb9ec2c4543ca8c9eeb153ea14c8d7db65d8b2.tar.gz
pyca-cryptography-99eb9ec2c4543ca8c9eeb153ea14c8d7db65d8b2.tar.bz2
type a test double (#6723)
* type a test double * Update tests/doubles.py Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com> Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
Diffstat (limited to 'tests/doubles.py')
-rw-r--r--tests/doubles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/doubles.py b/tests/doubles.py
index 3b6f2db..511c8a5 100644
--- a/tests/doubles.py
+++ b/tests/doubles.py
@@ -20,7 +20,7 @@ class DummyCipherAlgorithm(CipherAlgorithm):
class DummyBlockCipherAlgorithm(DummyCipherAlgorithm, BlockCipherAlgorithm):
- def __init__(self, _):
+ def __init__(self, _: object) -> None:
pass
name = "dummy-block-cipher"