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 Mar 29, 2024
1 parent cc9cdaf commit 5d47303
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wwpdb/apps/ann_tasks_v2/report/styles/ModelReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class PdbxReportCategoryStyle(PdbxCategoryStyleBase):
"pdbx_initial_refinement_model": [
("_pdbx_initial_refinement_model.id", "%s", "str", ""),
("_pdbx_initial_refinement_model.type", "%s", "str", ""),
("_pdbx_initial_refinement_model.source_name", "%s", "str", ""),
("_pdbx_initial_refinement_model.source_name", "%s", "str", ""),
("_pdbx_initial_refinement_model.accession_code", "%s", "str", ""),
("_pdbx_initial_refinement_model.details", "%s", "str", ""),
("_pdbx_initial_refinement_model.entity_id_list", "%s", "str", ""),
Expand Down
5 changes: 4 additions & 1 deletion wwpdb/apps/ann_tasks_v2/utils/GetCovalentBond.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@ def __processCloseContactContent(self, jsonObj):
if tupL[12]:
atom += "(" + tupL[12] + ")"
#
tablerow += "<td>" + tupL[7] + "</td>" + "<td>" + tupL[8] + "</td>" + "<td>" + tupL[9] + tupL[10] + "</td>" + "<td>" + atom + "</td>" + "<td>" + tupL[13] + "</td>" + "<td>" + tupL[14] + "</td>"
tablerow += "<td>" + tupL[7] + "</td>" + "<td>" + tupL[8] \
+ "</td>" + "<td>" + tupL[9] + tupL[10] + "</td>" + "<td>" \
+ atom + "</td>" + "<td>" + tupL[13] + "</td>" + "<td>" \
+ tupL[14] + "</td>"
#
tupL[6] = tupL[6].replace("_", "-")
tupL[13] = tupL[13].replace("_", "-")
Expand Down

0 comments on commit 5d47303

Please sign in to comment.