1
0

Make pylint happy.

This commit is contained in:
2018-02-03 13:46:17 +01:00
parent 2f86f7698a
commit 74d48bd433
10 changed files with 18 additions and 18 deletions
+9 -9
View File
@@ -18,15 +18,15 @@ def default_enum(enumname, vardict):
return enum.IntEnum(enumname, vardict, module=__name__, qualname="tcllib.FotaCheck.{}".format(enumname))
class FotaCheck(
tclcheck.TclCheck,
tclrequest.TclRequest,
tclchecksum.TclChecksum,
tclencheader.TclEncHeader,
servervote.ServerVote,
credentials.Credentials,
devlist.DevList,
dumpmgr.DumpMgr,
xmltools.XmlTools
tclcheck.TclCheckMixin,
tclrequest.TclRequestMixin,
tclchecksum.TclChecksumMixin,
tclencheader.TclEncHeaderMixin,
servervote.ServerVoteMixin,
credentials.CredentialsMixin,
devlist.DevListMixin,
dumpmgr.DumpMgrMixin,
xmltools.XmlToolsMixin
):
VDKEY = b"eJwdjwEOwDAIAr8kKFr//7HhmqXp8AIIDrYAgg8byiUXrwRJRXja+d6iNxu0AhUooDCN9rd6rDLxmGIakUVWo3IGCTRWqCAt6X4jGEIUAxgN0eYWnp+LkpHQAg/PsO90ELsy0Npm/n2HbtPndFgGEV31R9OmT4O4nrddjc3Qt6nWscx7e+WRHq5UnOudtjw5skuV09pFhvmqnOEIs4ljPeel1wfLYUF4\n"
CKTP = default_enum("CKTP", ["AUTO", "MANUAL"])