From 97e2bb36c4dbafbc6e231d3be4fbd1a0d8804a6d Mon Sep 17 00:00:00 2001
From: Cayo Puigdefabregas <cayo@puigdefabregas.eu>
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'))