diff options
| author | 2020-11-28 10:03:06 +0200 | |
|---|---|---|
| committer | 2020-11-28 10:03:06 +0200 | |
| commit | 523876b075f6dea792fd4616864e1d0ea1a81e93 (patch) | |
| tree | b89a938c8cd4b32a060a240979024de27a40db78 | |
| parent | Update utils to match with new unlimited categories system (diff) | |
Change views __init__.py
Diffstat (limited to '')
| -rw-r--r-- | pydis_site/apps/content/views/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pydis_site/apps/content/views/__init__.py b/pydis_site/apps/content/views/__init__.py index 616bc850..f92660d6 100644 --- a/pydis_site/apps/content/views/__init__.py +++ b/pydis_site/apps/content/views/__init__.py @@ -1,5 +1,4 @@ -from .article import ArticleView +from .article_category import ArticleOrCategoryView from .articles import ArticlesView -from .category import CategoryView -__all__ = ["ArticleView", "ArticlesView", "CategoryView"] +__all__ = ["ArticleOrCategoryView", "ArticlesView"] |