From e84247f997f9ef1674450a8ab4e8279a3d19d43a Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Mon, 4 May 2020 08:14:06 +0100 Subject: [PATCH] Delete unnecessary import This doesn't do anything useful on python 2 and causes an ImportError on python 3: >>> import brotherprint Traceback (most recent call last): File "", line 1, in File "python-brotherprint/brotherprint/__init__.py", line 1, in from brotherprint import BrotherPrint ImportError: cannot import name 'BrotherPrint --- brotherprint/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/brotherprint/__init__.py b/brotherprint/__init__.py index 67e7f3f..e69de29 100644 --- a/brotherprint/__init__.py +++ b/brotherprint/__init__.py @@ -1 +0,0 @@ -from brotherprint import BrotherPrint \ No newline at end of file