From 469afd42318e9bf7817f38b27c88baab775d1f0d Mon Sep 17 00:00:00 2001 From: malin10 Date: Fri, 24 Jul 2020 15:14:14 +0800 Subject: [PATCH] fix python3 import err --- core/metrics/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/metrics/__init__.py b/core/metrics/__init__.py index 23fd64e7..0814e5a7 100755 --- a/core/metrics/__init__.py +++ b/core/metrics/__init__.py @@ -12,6 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from precision import Precision +from .precision import Precision __all__ = ['Precision'] -- GitLab