Files
backend/game/apps.py
Michel Wilhelm 1e0af277fe
All checks were successful
Build / Code quality (push) Successful in 9m51s
Creates a docker image for production / Build the docker image (push) Successful in 57s
♻️ (game.py, signals.py): Refactor comparison operators for better readability
🔧 (apps.py): Import signals in ready method to ensure signals are loaded when the app starts
🔧 (pyproject.toml): Add PGH004 to lint ignore list to avoid linting errors related to PostgreSQL-specific code
2025-02-05 12:06:07 -03:00

11 lines
205 B
Python

from django.apps import AppConfig
class GameConfig(AppConfig):
name = 'game'
verbose_name = 'Game'
verbose_name_plural = 'Games'
def ready(self):
from game import signals # noqa