summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/confusing-with-statement/good.py
blob: e8b39d5001fe262e82a981a62c9b65b4ceaaab2c (plain)
1
2
3
with open('file.txt', 'w', encoding="utf8") as fh1:
    with open('file.txt', 'w', encoding="utf8") as fh2:
        pass