From af69f4d2e0f0a2b0ca76490eefceeda171dc59b0 Mon Sep 17 00:00:00 2001 From: Saleem Latif Date: Wed, 2 Oct 2019 18:26:53 +0500 Subject: [PATCH] fixing isort --- test_utils/__init__.py | 1 + theming/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test_utils/__init__.py b/test_utils/__init__.py index fcb09bd..b0566ed 100644 --- a/test_utils/__init__.py +++ b/test_utils/__init__.py @@ -4,6 +4,7 @@ from __future__ import absolute_import import os + from path import Path from django.conf import settings diff --git a/theming/__init__.py b/theming/__init__.py index 8ddb9dd..66d4248 100644 --- a/theming/__init__.py +++ b/theming/__init__.py @@ -3,8 +3,9 @@ """ from __future__ import absolute_import +from .core import get_base_dir, get_themes, is_enabled + __version__ = "0.1.0" -from .core import is_enabled, get_base_dir, get_themes default_app_config = "theming.apps.ThemingConfig" # pylint: disable=invalid-name