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

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