From 2ae8d2316704c50ef2487640b99a0ae5b22e4a79 Mon Sep 17 00:00:00 2001 From: Ondrej Sykora Date: Mon, 13 Nov 2023 14:25:50 +0000 Subject: [PATCH] Fixed import paths in `analysis_test.py`. --- python/cfr/analysis/analysis_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/cfr/analysis/analysis_test.py b/python/cfr/analysis/analysis_test.py index fadca379..dd6bb6a7 100644 --- a/python/cfr/analysis/analysis_test.py +++ b/python/cfr/analysis/analysis_test.py @@ -1,7 +1,7 @@ import unittest -from google3.third_party.cfr.python.cfr.analysis import analysis -from google3.third_party.cfr.python.cfr.json import cfr_json +from . import analysis +from ..json import cfr_json class VehicleShipmentGroupsTest(unittest.TestCase):