Fix little errors

This commit is contained in:
Gregory Soutade
2020-12-11 12:18:21 +01:00
parent a6f8c71bf2
commit 0602d3ce4b
2 changed files with 3 additions and 1 deletions

View File

@@ -265,7 +265,7 @@ class DisplayHTMLBlockTableWithGraph(DisplayHTMLBlockTable):
def _computeMax(self):
for i in range(0, self.nb_valid_rows):
row = self.row[i]
row = self.rows[i]
for j in range(1, len(row)):
if type(row[j]) != int:
continue