From 26afadd45e842a29459a0b394f49542f6c554c54 Mon Sep 17 00:00:00 2001 From: dm Date: Fri, 8 Nov 2024 19:02:57 +0100 Subject: [PATCH] Fix type hint (#65) Signed-off-by: Alexis --- src/rfc3161_client/tsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rfc3161_client/tsp.py b/src/rfc3161_client/tsp.py index 2f5d839..5d1dd74 100644 --- a/src/rfc3161_client/tsp.py +++ b/src/rfc3161_client/tsp.py @@ -165,7 +165,7 @@ def ordering(self) -> bool: @property @abc.abstractmethod - def nonce(self) -> bytes: + def nonce(self) -> int: """Returns the nonce.""" @property