From 1531dcea02486bb1a295b9450f7bd16bdb4e9197 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 28 May 2014 18:27:20 +0200 Subject: [PATCH] Cosmetic changes on stars __init__.py file. --- taiga/projects/stars/__init__.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/taiga/projects/stars/__init__.py b/taiga/projects/stars/__init__.py index a95e2bd7..de86bcbc 100644 --- a/taiga/projects/stars/__init__.py +++ b/taiga/projects/stars/__init__.py @@ -1 +1,12 @@ -from .services import star, unstar, get_fans, get_starred +from .services import star +from .services import unstar +from .services import get_fans +from .services import get_starred +from .services import attach_startscount_to_queryset + + +__all__ = ("star", + "unstar", + "get_fans", + "get_starred", + "attach_startscount_to_queryset",)