Skip to content

Commit

Permalink
Merge pull request #120 from ChanTsune/feature/update-module-docstring
Browse files Browse the repository at this point in the history
Update docstring
  • Loading branch information
ChanTsune authored Jul 18, 2020
2 parents bcfd3da + b77c2be commit 4ae8a81
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions django_boost/templatetags/boost.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""This module provides python build-in functions for django template."""

from ast import literal_eval
from itertools import chain, zip_longest
from warnings import warn
Expand Down
2 changes: 2 additions & 0 deletions django_boost/templatetags/boost_query.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""This module provides queryset methods for django template."""

from django import template

register = template.Library()
Expand Down
2 changes: 2 additions & 0 deletions django_boost/templatetags/boost_url.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""This module provides URL utility for django template."""

from urllib import parse

from django.template import Library
Expand Down
2 changes: 2 additions & 0 deletions django_boost/templatetags/mimetype.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""This module provides mimetypes utility for django template."""

from mimetypes import guess_type

from django.template import Library
Expand Down

0 comments on commit 4ae8a81

Please sign in to comment.