From 9c19aff7c7561e3a82978a272ecdaad40dda5c00 Mon Sep 17 00:00:00 2001 From: django-bot Date: Thu, 3 Feb 2022 20:24:19 +0100 Subject: Refs #33476 -- Reformatted code with Black. --- tests/app_loading/not_installed/models.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'tests/app_loading/not_installed') diff --git a/tests/app_loading/not_installed/models.py b/tests/app_loading/not_installed/models.py index 44a9d93c98..8a881a9996 100644 --- a/tests/app_loading/not_installed/models.py +++ b/tests/app_loading/not_installed/models.py @@ -2,22 +2,19 @@ from django.db import models class NotInstalledModel(models.Model): - class Meta: - app_label = 'not_installed' + app_label = "not_installed" class RelatedModel(models.Model): - class Meta: - app_label = 'not_installed' + app_label = "not_installed" not_installed = models.ForeignKey(NotInstalledModel, models.CASCADE) class M2MRelatedModel(models.Model): - class Meta: - app_label = 'not_installed' + app_label = "not_installed" not_installed = models.ManyToManyField(NotInstalledModel) -- cgit v1.3