File: __init__.py

package info (click to toggle)
python-django-object-actions 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 348 kB
  • sloc: python: 746; makefile: 61; sh: 6
file content (12 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""A Django app for adding object tools for models in the admin."""

__version__ = "4.3.0"


# kind of like __all__, make these available for public
from .utils import (
    BaseDjangoObjectActions,
    DjangoObjectActions,
    takes_instance_or_queryset,
    action,
)