|
@@ -6,8 +6,10 @@ def checkConfig(config):
|
|
|
'''
|
|
|
print('check config ...')
|
|
|
if type(config) == dict:
|
|
|
+ print('check config dict ...')
|
|
|
return checkChannelConfig(config)
|
|
|
elif type(config) == list:
|
|
|
+ print('check config list ...')
|
|
|
for itemConfig in config:
|
|
|
if not checkChannelConfig(itemConfig):
|
|
|
return False
|