Skip to content

Commit ba0db33

Browse files
committed
another fix for cirleci failing tests
1 parent 0a9b1ee commit ba0db33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/tskit/genotypes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ def __str__(self) -> str:
351351
[
352352
f"Samples with allele "
353353
f"""{'missing' if k is None else "'" + k + "'"}""",
354-
f"{util.format_number(counts[k], sep=",")} "
355-
f"({util.format_number(freqs[k] * 100, 2, sep=",")}%)",
354+
f"{util.format_number(counts[k], sep=',')} "
355+
f"({util.format_number(freqs[k] * 100, 2, sep=',')}%)",
356356
]
357357
for k in self.alleles
358358
]

0 commit comments

Comments
 (0)