From cdf997aff5f9448a09811ee24e4cf9ff489560b1 Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Mon, 7 Mar 2016 00:10:06 +0100 Subject: [PATCH] FIX import problems with __init__.py * removes all imports from __init__.py * users will have to directly import the printer module (same behaviour as in master) * fixes #97 --- escpos/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/escpos/__init__.py b/escpos/__init__.py index 1d72614..0459ce8 100644 --- a/escpos/__init__.py +++ b/escpos/__init__.py @@ -1,5 +1 @@ -import constants -import escpos -import exceptions -import printer __all__ = ["constants", "escpos", "exceptions", "printer"]