From 3b6482cb0ab7eb51756213ccf7b7c8822fbda3d5 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Tue, 7 Jul 2020 12:40:28 +0530 Subject: Fixed 10 Anti-Pattern issues --- app/views.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app/views.py') diff --git a/app/views.py b/app/views.py index b9ab620..fd1f466 100644 --- a/app/views.py +++ b/app/views.py @@ -105,9 +105,8 @@ def dock_upload(): target.save(secure_filename(target.filename)) ligand.save(secure_filename(ligand.filename)) buffer = "center_x="+cx+"\ncenter_y="+cy+"\ncenter_z="+cz+"\nsize_x="+sx+"\nsize_y="+sy+"\nsize_z="+sz - f = open("config.txt","w") - f.write(buffer) - f.close() + with open("config.txt","w") as f: + f.write(buffer) ligandB = convertToBinaryData(secure_filename(ligand.filename)) receptor = convertToBinaryData(secure_filename(target.filename)) config = convertToBinaryData("config.txt") -- cgit v1.2.3