From 39e86793a6b4f8b61832b95939754218e95439a0 Mon Sep 17 00:00:00 2001 From: StNicolay <103897650+StNicolay@users.noreply.github.com> Date: Fri, 14 Oct 2022 19:52:48 +0300 Subject: [PATCH] Removed print --- src/cryptography/master_pass.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cryptography/master_pass.py b/src/cryptography/master_pass.py index e13919f..8f44779 100644 --- a/src/cryptography/master_pass.py +++ b/src/cryptography/master_pass.py @@ -1,7 +1,5 @@ import bcrypt -print("Hi") - def encrypt_master_pass(passwd: str) -> tuple[bytes, bytes]: """Hashes master password and return tuple of hashed password and salt"""