From 8f7be37a700aa78f1906e155f79356fcd7e4b260 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 30 Jun 2016 23:36:25 +0200 Subject: Absolute imports everywhere --- poezio/core/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'poezio/core/__init__.py') diff --git a/poezio/core/__init__.py b/poezio/core/__init__.py index fd3d0283..0c6d63d9 100644 --- a/poezio/core/__init__.py +++ b/poezio/core/__init__.py @@ -1,7 +1,8 @@ """ Core class, split into smaller chunks """ +__all__ = ['Core', 'Command', 'Status'] -from . core import Core -from . structs import Command, Status +from poezio.core.core import Core +from poezio.core.structs import Command, Status -- cgit v1.2.3