QuackatronHQ / Gigarepo

File opened without the with statement PTC-W0010
Anti-pattern
Critical
1 occurrence in this check
Use the with statement to open a file
 72
 73    sorted(value, key=lambda k: len(k))
 74
 75    f = open("/tmp/.deepsource.toml", "r") 76    f.write("config file.")
 77    f.close()
 78