summaryrefslogtreecommitdiff
path: root/doc/data/messages/r/redefined-argument-from-local/bad.py
blob: 733f307b3a64460506fbb745c8c48c555850db9b (plain)
1
2
3
4
def show(host_id=10.11):
    # +1: [redefined-argument-from-local]
    for host_id, host in [[12.13, "Venus"], [14.15, "Mars"]]:
        print(host_id, host)