Skip to content

Commit c8a88b1

Browse files
authored
Merge pull request #6759 from ajdapretnar/table-fix
Table: small fix
2 parents 5a3cb89 + 156ba6d commit c8a88b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/data/utils/tablesummary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def format_part(part: Optional[_ArrayStat]) -> str:
125125
text[-1] += " (no missing data)"
126126

127127
nattrs = len(summary.domain.attributes)
128-
text.append(f"{nattrs} {pl(nattrs, 'feature')}"
128+
text.append(f"{nattrs} {pl(nattrs, 'feature')}"
129129
+ format_part(summary.X))
130130

131131
if not summary.domain.class_vars:

0 commit comments

Comments
 (0)