From 70ce8bc0ae5d32eed9c30c1b7c29ead237ffe5df Mon Sep 17 00:00:00 2001 From: Alexis Date: Fri, 8 Nov 2024 17:35:51 +0100 Subject: [PATCH] Fix type hint 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