Fix lint.

This commit is contained in:
Itamar Turner-Trauring 2023-03-24 12:06:49 -04:00
parent 494a977525
commit 3212311bbe

View File

@ -2,19 +2,7 @@
Ported to Python 3.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from future.utils import PY2
if PY2:
from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, list, object, range, str, max, min # noqa: F401
try:
from typing import Union
except ImportError:
pass
from typing import Union
import attr
@ -95,8 +83,7 @@ class HashedLeaseSerializer(object):
cls._hash_secret,
)
def serialize(self, lease):
# type: (Union[LeaseInfo, HashedLeaseInfo]) -> bytes
def serialize(self, lease: Union[LeaseInfo, HashedLeaseInfo]) -> bytes:
if isinstance(lease, LeaseInfo):
# v2 of the immutable schema stores lease secrets hashed. If
# we're given a LeaseInfo then it holds plaintext secrets. Hash