Skip to content

Commit

Permalink
Init modified for pyflakes.
Browse files Browse the repository at this point in the history
  • Loading branch information
palkeo committed Jul 4, 2013
1 parent 91c336d commit ab1eec1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion safedelete/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# flake8: noqa

from .utils import (HARD_DELETE, SOFT_DELETE, HARD_DELETE_NOCASCADE,
DELETED_INVISIBLE, DELETED_VISIBLE_BY_PK)
DELETED_INVISIBLE, DELETED_VISIBLE_BY_PK)
from .models import safedelete_mixin_factory
from .managers import safedelete_manager_factory

__all__ = ['safedelete_manager_factory',
'safedelete_mixin_factory',
'HARD_DELETE', 'SOFT_DELETE',
'HARD_DELETE_NOCASCADE',
'DELETED_INVISIBLE',
'DELETED_VISIBLE_BY_PK']

0 comments on commit ab1eec1

Please sign in to comment.