Skip to content

Commit

Permalink
[__init__.py] Remove non-numeric default
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Feb 18, 2021
1 parent 158b94f commit 9659b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/__init__.py
Expand Up @@ -66,7 +66,7 @@
for type in tunerTypes:
config.hrtunerproxy.bouquets_list[type] = ConfigSelection(default = None, choices = [(None, _('Not set')), ('all', _('All'))] + getBouquetsList())
config.hrtunerproxy.iptv_tunercount = ConfigSelectionNumber(min = 1, max = 10, stepwidth = 1, default = 2, wraparound = True)
config.hrtunerproxy.slotsinuse = NoSave(ConfigNumber(default = ""))
config.hrtunerproxy.slotsinuse = NoSave(ConfigNumber())
config.hrtunerproxy.debug = ConfigEnableDisable(default = False)

def getVersion():
Expand Down

0 comments on commit 9659b0e

Please sign in to comment.