misc: Apply pyupgrade changes for Python 3.12 compatibility

Command applied:
```
find ./backend/ -type f -name "*.py" -exec pyupgrade --py312-plus {} \;
```
This commit is contained in:
Michael Manganiello
2025-06-29 12:27:16 -03:00
parent 107297317a
commit 252722e3bc
16 changed files with 24 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
from typing import Sequence
from collections.abc import Sequence
from decorators.database import begin_session
from models.user import Role, User