Fix second syntax error in authentication/models.py

- 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 <noreply@anthropic.com>
This commit is contained in:
thecyberlearn 2025-09-05 02:46:16 +05:30
parent ff49a81dfd
commit 8ba6726c6f

View File

@ -112,8 +112,7 @@ class User(AbstractUser):
# Invalidate wallet cache # Invalidate wallet cache
try: try:
# Cache invalidation removed - simplified version pass # Cache invalidation removed - simplified version
# Cache invalidation removed
except ImportError: except ImportError:
pass # Cache utils not available pass # Cache utils not available