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