Skip to content

Commit 438eb15

Browse files
timmintammrossinek
authored andcommitted
make combine_counts a keyword argument
1 parent 902f8c5 commit 438eb15

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

povm_toolbox/post_processor/median_of_means.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def __init__(
7676
self,
7777
povm_sample: POVMPubResult,
7878
dual: BaseDual | None = None,
79-
combine_counts: bool = False,
8079
*,
80+
combine_counts: bool = False,
8181
num_batches: int | None = None,
8282
upper_delta_confidence: float | None = None,
8383
seed: int | Generator | None = None,

povm_toolbox/post_processor/povm_post_processor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def __init__(
6161
self,
6262
povm_sample: POVMPubResult,
6363
dual: BaseDual | None = None,
64+
*,
6465
combine_counts: bool = False,
6566
) -> None:
6667
"""Initialize the POVM post-processor.

0 commit comments

Comments
 (0)