From 053a1c249d548d0a54986aa739046bd7883abd75 Mon Sep 17 00:00:00 2001 From: Ryan Harper Date: Thu, 24 May 2018 14:23:03 -0500 Subject: [PATCH] pyflakes3 fixes for subiquitycore/__init__.py --- subiquitycore/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/subiquitycore/__init__.py b/subiquitycore/__init__.py index 4a146883..0cccf2c0 100644 --- a/subiquitycore/__init__.py +++ b/subiquitycore/__init__.py @@ -15,6 +15,9 @@ """ SubiquityCore """ -import subiquitycore.i18n +from subiquitycore import i18n +__all__ = [ + 'i18n', +] __version__ = "0.0.5"