Skip to content
Merged
Show file tree
Hide file tree
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -365,5 +365,5 @@ dev = [
{include-group = "test"},
"lit>=18.1.8",
"nox>=2025.11.12",
"ty==0.0.37",
"ty==0.0.39",
]
4 changes: 2 additions & 2 deletions python/mqt/core/plugins/qiskit/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ def _get_bit_arrays(
start_index = 0
for creg in cregs:
# Prepare list of counts for this specific register
creg_counts = []
creg_counts: list[dict[str | int, int]] = []
for count_dict in counts:
new_dict = {}
new_dict: dict[str | int, int] = {}
for key, val in count_dict.items():
clean_key = key.replace(" ", "")

Expand Down
46 changes: 23 additions & 23 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading