From c4633ca2c2a1e8f119682cbf71b6985ea343b691 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sat, 22 Feb 2025 09:01:44 +0100 Subject: [PATCH] Add type test for get_default_parameters --- tests/typing/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/typing/api.py b/tests/typing/api.py index 91e0912..6aadffd 100644 --- a/tests/typing/api.py +++ b/tests/typing/api.py @@ -15,3 +15,5 @@ ph.verify("hash", b"pw") if ph.check_needs_rehash("hash") is True: ... + +params: argon2.Parameters = argon2.profiles.get_default_parameters()