summaryrefslogtreecommitdiff
path: root/src/M2Crypto/ASN1.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-03-28 22:31:14 +0200
committerMatěj Cepl <mcepl@cepl.eu>2023-03-28 23:21:49 +0200
commite4dd7c452b4eb01c65701178f1ce04ecfd60e07a (patch)
tree63584ef57fa74361db6d9e741c0318961bded25f /src/M2Crypto/ASN1.py
parent10df590493b09039c4c76ed56aca47c0a3de4657 (diff)
downloadm2crypto-e4dd7c452b4eb01c65701178f1ce04ecfd60e07a.tar.gz
Fix mypy problems
Diffstat (limited to 'src/M2Crypto/ASN1.py')
-rw-r--r--src/M2Crypto/ASN1.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/M2Crypto/ASN1.py b/src/M2Crypto/ASN1.py
index b29326a..424945d 100644
--- a/src/M2Crypto/ASN1.py
+++ b/src/M2Crypto/ASN1.py
@@ -182,7 +182,8 @@ class ASN1_TIME(object):
self.asn1_time = asn1_time
self._pyfree = _pyfree
else:
- self.asn1_time = m2.asn1_time_new() # type: bytes (ASN1_TIME*)
+ # that's (ASN1_TIME*)
+ self.asn1_time = m2.asn1_time_new() # type: bytes
self._pyfree = 1
def __del__(self):