QuackatronHQ / Gigarepo

with statements can be merged PTC-W0062
Anti-pattern
Major
a month ago2 years old
Consider merging collapsible With statements`
58
59
60def copy_file(file1, file2):
61    with open(file1, "rb") as f1:62        with open(file2, "wb") as f2:
63            f2.write(f1.read())