Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions simplecasts/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
AudioLog,
Category,
Episode,
EpisodeQuerySet,
Podcast,
PodcastQuerySet,
Recommendation,
Subscription,
User,
)
from simplecasts.models.episodes import EpisodeQuerySet
from simplecasts.models.podcasts import PodcastQuerySet

if TYPE_CHECKING:
from django_stubs_ext import StrOrPromise # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion simplecasts/models/fields.py → simplecasts/db/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from django.db import models

from simplecasts.validators import url_validator
from simplecasts.db.validators import url_validator

# URLField with sensible defaults
URLField = functools.partial(
Expand Down
File renamed without changes.
File renamed without changes.
Loading
Loading