From ff49a81dfddddf762c2c5d5a750cd39754e96774 Mon Sep 17 00:00:00 2001 From: thecyberlearn Date: Fri, 5 Sep 2025 02:44:07 +0530 Subject: [PATCH] Fix syntax error in authentication/models.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix empty try block causing IndentationError during collectstatic - Add pass statement to make 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 a06d615..4345d08 100644 --- a/authentication/models.py +++ b/authentication/models.py @@ -67,8 +67,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