15 Jun
2015
15 Jun
'15
2:04 p.m.
# HG changeset patch # User Jim Unroe rock.unroe@gmail.com # Date 1434386153 14400 # Node ID 5812f268ba3b5eb9f5b387261e8220d4fb4091bf # Parent 798aecff3d61cf90f53793784ae1272f218ebf50 [UV-5R] Add Support for Baofeng UV-82HP
Thanks!
if self.MODEL == "KT-980HP" or self.MODEL == "BF-F8HP":
if self.MODEL == "KT-980HP" or self.MODEL == "BF-F8HP" \
or self.MODEL == "UV-82HP":
Just FYI, something like this can be more expedient once you get to this many options:
if self.MODEL in ("KT-980HP", "BF-F8HP", "UV-82HP"):
--Dan