Fixed broken piexif imports

This commit is contained in:
Joel Collins 2019-02-19 13:26:18 +00:00
parent a062936751
commit e738837101
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ import sys
from ._common import *
from ._exceptions import InvalidImageDataError
from piexif import _webp
from . import _webp
def insert(exif, image, new_file=None):
"""

View file

@ -4,7 +4,7 @@ import sys
from ._common import *
from ._exceptions import InvalidImageDataError
from ._exif import *
from piexif import _webp
from . import _webp
LITTLE_ENDIAN = b"\x49\x49"

View file

@ -1,7 +1,7 @@
import io
from ._common import *
from piexif import _webp
from . import _webp
def remove(src, new_file=None):
"""