From b363cc2d94ff34b65ca8775a3586e1be7de65a49 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Mon, 16 Dec 2019 12:57:28 +0100 Subject: [PATCH] Adds missing tool tests --- common/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tools.py b/common/tools.py index 6d539b1..e527e33 100644 --- a/common/tools.py +++ b/common/tools.py @@ -9,6 +9,6 @@ def check_sha256_hex_format(value): value(:mod:`str`): the value to be checked. Returns: - :mod:`bool`: Wether or not the value matches the format. + :mod:`bool`: Whether or not the value matches the format. """ return isinstance(value, str) and re.match(r"^[0-9A-Fa-f]{64}$", value) is not None