diff options
| author | nicolasjon <nick@zbm2.com> | 2020-12-12 18:06:06 +0000 |
|---|---|---|
| committer | nicolasjon <nick@zbm2.com> | 2020-12-12 18:06:06 +0000 |
| commit | 4a2d794cdfe4adf057073c0baa941c58d69d0f4f (patch) | |
| tree | 2848ecea4770f31bae6aea0ea88b1e0eac0a3bf9 | |
| parent | 089d5f612e2c71cc59acb8070756be602340477f (diff) | |
| download | chirp-4a2d794cdfe4adf057073c0baa941c58d69d0f4f.tar.gz chirp-4a2d794cdfe4adf057073c0baa941c58d69d0f4f.tar.xz | |
FT70 syntax/Lint changes (test)
| -rw-r--r-- | chirp/drivers/ft70.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chirp/drivers/ft70.py b/chirp/drivers/ft70.py index 2875c13..73d2df0 100644 --- a/chirp/drivers/ft70.py +++ b/chirp/drivers/ft70.py @@ -15,15 +15,16 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
+import string
from chirp.drivers import yaesu_clone
from chirp import chirp_common, directory, bitwise
from chirp.settings import RadioSettingGroup, RadioSetting, RadioSettings, \
- RadioSettingValueInteger, RadioSettingValueString, \
- RadioSettingValueList, RadioSettingValueBoolean, \
+ RadioSettingValueString, \
+ RadioSettingValueList, \
InvalidValueError
from textwrap import dedent
-import string
+
LOG = logging.getLogger(__name__)
# Testing
|
