Skip to content

Commit d60cb28

Browse files
chore: Upgrade Python requirements (#2692)
1 parent e76ac4c commit d60cb28

File tree

24 files changed

+80
-78
lines changed

24 files changed

+80
-78
lines changed

credentials/apps/catalog/management/commands/copy_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Copy catalog data from Discovery. """
1+
"""Copy catalog data from Discovery."""
22

33
import logging
44
import sys

credentials/apps/catalog/tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Tests for catalog models. """
1+
"""Tests for catalog models."""
22

33
from django.test import TestCase
44

credentials/apps/catalog/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Tests for catalog utilities. """
1+
"""Tests for catalog utilities."""
22

33
from unittest.mock import MagicMock
44

credentials/apps/core/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Admin configuration for core models. """
1+
"""Admin configuration for core models."""
22

33
from django.contrib import admin, messages
44
from django.contrib.auth.admin import UserAdmin

credentials/apps/core/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Constants for the core app. """
1+
"""Constants for the core app."""
22

33

44
class Status:

credentials/apps/core/context_processors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Core context processors. """
1+
"""Core context processors."""
22

33
from django.conf import settings
44

credentials/apps/core/management/commands/create_or_update_site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Creates or updates a Site including SiteConfiguration data. """
1+
"""Creates or updates a Site including SiteConfiguration data."""
22

33
import logging
44

credentials/apps/core/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Core models. """
1+
"""Core models."""
22

33
import hashlib
44
from urllib.parse import urljoin

credentials/apps/core/tests/test_context_processors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Context processor tests. """
1+
"""Context processor tests."""
22

33
from django.conf import settings
44
from django.test import RequestFactory, TestCase

credentials/apps/core/tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Tests for core models. """
1+
"""Tests for core models."""
22

33
import json
44
from unittest import mock

0 commit comments

Comments
 (0)