Reordering imports

This commit is contained in:
2023-01-09 16:34:02 +00:00
parent 771eaa3917
commit eca6d68dc3
47 changed files with 259 additions and 183 deletions

View File

@@ -1,9 +1,11 @@
from django.db import models
from django.db.models import Case, Q, When
from django.utils import timezone
from datetime import timedelta
from django.db import models
from django.db.models import Case
from django.db.models import Q
from django.db.models import When
from django.utils import timezone
class PublishedManager(models.Manager):
def published(self, public=True):