From a07811a525e8721c6b9c32962b38e427c9c782e9 Mon Sep 17 00:00:00 2001 From: Aly Sivji Date: Sat, 2 Dec 2017 11:55:30 -0600 Subject: [PATCH 1/2] Import submodules into __init__.py for IDE code completion --- dash/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dash/__init__.py b/dash/__init__.py index fe3b40fd0c..03fcb1769a 100644 --- a/dash/__init__.py +++ b/dash/__init__.py @@ -1,3 +1,7 @@ from .dash import Dash # noqa: F401 +from . import authentication # noqa: F401 +from . import dependencies # noqa: F401 from . import development # noqa: F401 +from . import exceptions # noqa: F401 +from . import resources # noqa: F401 from .version import __version__ # noqa: F401 From 3da58df0734c37543c26c2cdc93c07f7eb5a1c6a Mon Sep 17 00:00:00 2001 From: Aly Sivji Date: Mon, 11 Dec 2017 22:56:31 -0600 Subject: [PATCH 2/2] Remove auth module import --- dash/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dash/__init__.py b/dash/__init__.py index 03fcb1769a..20be13db68 100644 --- a/dash/__init__.py +++ b/dash/__init__.py @@ -1,5 +1,4 @@ from .dash import Dash # noqa: F401 -from . import authentication # noqa: F401 from . import dependencies # noqa: F401 from . import development # noqa: F401 from . import exceptions # noqa: F401