Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed dict print #90

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/elexmodel/models/BootstrapElectionModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ def get_national_summary_estimates(

if len(called_states) != self.aggregate_error_B_1.shape[0]:
raise BootstrapElectionModelException(
f"called_states is of length {len(nat_sum_data_dict)} but there are {self.aggregate_error_B_1.shape[0]} contests"
f"called_states is of length {len(called_states)} but there are {self.aggregate_error_B_1.shape[0]} contests"
)

# sort in order to get in the same order as the contests,
Expand Down
Loading