From 8ba6726c6fd4b893039c4c029f1d25854299fb1f Mon Sep 17 00:00:00 2001 From: thecyberlearn Date: Fri, 5 Sep 2025 02:46:16 +0530 Subject: [PATCH] Fix second syntax error in authentication/models.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix another empty try block at line 114 causing IndentationError - Add pass statement to make the try block valid Python syntax 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- authentication/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/authentication/models.py b/authentication/models.py index 4345d08..5d58701 100644 --- a/authentication/models.py +++ b/authentication/models.py @@ -112,8 +112,7 @@ class User(AbstractUser): # Invalidate wallet cache try: - # Cache invalidation removed - simplified version - # Cache invalidation removed + pass # Cache invalidation removed - simplified version except ImportError: pass # Cache utils not available