PYTHON3 - clean-up local references to module dependencies ECC-264

This commit is contained in:
Stephan Siemen 2018-10-09 14:03:27 +01:00
parent cf6a9ee9eb
commit 8e739d3d55
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Exception class hierarchy
"""
import gribapi_swig as _internal
from . import gribapi_swig as _internal
class GribInternalError(Exception):

View File

@ -30,7 +30,7 @@ import os
from functools import wraps
# import inspect
from . import errors
from errors import * # noqa
from .errors import * # noqa
KEYTYPES = {
1: int,