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
This commit is contained in:
Patrick Kanzler 2016-03-07 00:10:06 +01:00
parent 8b8162c1a9
commit cdf997aff5
No known key found for this signature in database
GPG Key ID: F07F07153306FCEF
1 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1 @@
import constants
import escpos
import exceptions
import printer
__all__ = ["constants", "escpos", "exceptions", "printer"]