From 352d3884279d141446016004c509d094bfb25170 Mon Sep 17 00:00:00 2001 From: Matthew Poletiek Date: Tue, 15 Dec 2020 09:37:57 -0600 Subject: Fixed missing module errors --- chirp/drivers/baofeng_uv3r.py | 2 +- chirp/drivers/ft2800.py | 2 +- chirp/drivers/th_uv3r25.py | 2 +- chirp/drivers/wouxun.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chirp/drivers/baofeng_uv3r.py b/chirp/drivers/baofeng_uv3r.py index e73bd9f..ad58a35 100644 --- a/chirp/drivers/baofeng_uv3r.py +++ b/chirp/drivers/baofeng_uv3r.py @@ -19,7 +19,7 @@ import time import os import logging -from wouxun_common import do_download, do_upload +from .wouxun_common import do_download, do_upload from chirp import util, chirp_common, bitwise, errors, directory from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueBoolean, RadioSettingValueList, \ diff --git a/chirp/drivers/ft2800.py b/chirp/drivers/ft2800.py index 860f570..b834837 100644 --- a/chirp/drivers/ft2800.py +++ b/chirp/drivers/ft2800.py @@ -18,7 +18,7 @@ import os import logging from chirp import util, memmap, chirp_common, bitwise, directory, errors -from yaesu_clone import YaesuCloneModeRadio +from .yaesu_clone import YaesuCloneModeRadio LOG = logging.getLogger(__name__) diff --git a/chirp/drivers/th_uv3r25.py b/chirp/drivers/th_uv3r25.py index ece7959..607b0c2 100644 --- a/chirp/drivers/th_uv3r25.py +++ b/chirp/drivers/th_uv3r25.py @@ -22,7 +22,7 @@ from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueInteger, RadioSettingValueList, \ RadioSettingValueBoolean, RadioSettingValueString -from th_uv3r import TYTUV3RRadio, tyt_uv3r_prep, THUV3R_CHARSET +from .th_uv3r import TYTUV3RRadio, tyt_uv3r_prep, THUV3R_CHARSET def tyt_uv3r_download(radio): diff --git a/chirp/drivers/wouxun.py b/chirp/drivers/wouxun.py index 733c801..14f7b02 100644 --- a/chirp/drivers/wouxun.py +++ b/chirp/drivers/wouxun.py @@ -23,7 +23,7 @@ from chirp.settings import RadioSetting, RadioSettingGroup, \ RadioSettingValueBoolean, RadioSettingValueList, \ RadioSettingValueInteger, RadioSettingValueString, \ RadioSettingValueFloat, RadioSettings -from wouxun_common import wipe_memory, do_download, do_upload +from .wouxun_common import wipe_memory, do_download, do_upload from textwrap import dedent LOG = logging.getLogger(__name__) -- cgit v1.2.3