Files
openide/python/testData/quickFixes/PyRemoveUnusedLocalQuickFixTest/withOneTarget.py
andrey.matveev 965121e9dc [PY-26418] Fix removing whole with statement if target is unused
GitOrigin-RevId: 217ee91cebf600fa0035c2534d1b00878cf41858
2020-07-21 10:42:32 +00:00

3 lines
71 B
Python

def main():
with open('file.txt') as <caret>file:
print(42)