Skip to content

Commit 4ab0159

Browse files
authored
Syndication Feed items do not need to be Model instances (#1444)
1 parent b15d602 commit 4ab0159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django-stubs/contrib/syndication/views.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def add_domain(domain: str, url: str, secure: bool = ...) -> str: ...
1010

1111
class FeedDoesNotExist(ObjectDoesNotExist): ...
1212

13-
_Item = TypeVar("_Item", bound=Model)
13+
_Item = TypeVar("_Item")
1414
_Object = TypeVar("_Object")
1515

1616
class Feed(Generic[_Item, _Object]):

0 commit comments

Comments
 (0)