From ebc5f7ce51d28f02d5c9200bf841df9598c8512d Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Mon, 26 Feb 2024 11:12:23 -0500 Subject: [PATCH] bugfix --- bbqr/join.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbqr/join.py b/bbqr/join.py index 54aa894..c30f9b7 100644 --- a/bbqr/join.py +++ b/bbqr/join.py @@ -35,7 +35,7 @@ def join_qrs(parts): data[idx] = p[8:] missing = set(range(num_parts)) - set(data) - assert not missing, f'parts missing: {missing:r}' + assert not missing, f'parts missing: {missing!r}' parts = [data[i] for i in range(num_parts)]