Skip to content

Commit

Permalink
PEP8/pylint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Peisach committed Jan 24, 2024
1 parent 9f0d3a2 commit 6926ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wwpdb/apps/ann_tasks_v2/utils/GetCovalentBond.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def __processCloseContactContent(self, jsonObj):
#
tablerow += "<td>" + tupL[7] + "</td>" + "<td>" + tupL[8] + "</td>" + "<td>" + tupL[9] + tupL[10] + "</td>" + "<td>" + atom + "</td>" + "<td>" + tupL[13] + "</td>"
#
tupL[6] = tupL[6].replace("_", "-");
tupL[13] = tupL[13].replace("_", "-");
tupL[6] = tupL[6].replace("_", "-")
tupL[13] = tupL[13].replace("_", "-")
bond_id = "covalent_bond_" + str(count)
#
tablerow += "<td>" + tupL[14] + '&nbsp; &nbsp; &nbsp; &nbsp; <input type="checkbox" id="' + bond_id + '" name="' + bond_id + '" value="' + "_".join(tupL) + '"/></td>'
Expand Down

0 comments on commit 6926ed4

Please sign in to comment.