From 2a839b841bd45c7df9b61236c70452579ad0ba0b Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Tue, 28 Jan 2025 18:16:35 +0100 Subject: [PATCH] drop pdbs --- idhub_auth/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/idhub_auth/models.py b/idhub_auth/models.py index 2a6becd..bdd7458 100644 --- a/idhub_auth/models.py +++ b/idhub_auth/models.py @@ -151,7 +151,6 @@ class User(AbstractBaseUser): return base64.b64encode(value_enc).decode('utf-8') def decrypt_data(self, data): - import pdb; pdb.set_trace() pw = self.decrypt_sensitive_data().encode('utf-8') sb = self.get_secret_box(pw) value = base64.b64decode(data.encode('utf-8'))