bundles: fix usage of set() vs {}
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-04-04 10:34:55 +02:00
parent c418102000
commit e36a352a42
Signed by: kunsi
GPG key ID: 12E3D2136B818350
8 changed files with 14 additions and 14 deletions

View file

@ -50,7 +50,7 @@ def iptables(metadata):
return {
'iptables': {
'port_rules': {
'8080': atomic(metadata.get('kodi/restrict-to', set('*'))),
'8080': atomic(metadata.get('kodi/restrict-to', {'*'})),
},
},
}