Skip to content

Commit

Permalink
Update committee query return type
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturWieczorek committed Nov 22, 2023
1 parent afb5442 commit 25316b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cardano_clusterlib/conway_gov_query_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ def drep_stake_distribution(
)
return out

def committee_state(self) -> tp.List[tp.List[tp.Dict[str, tp.Any]]]:
def committee_state(self) -> tp.Dict[str, tp.Any]:
"""Get the committee state."""
out: tp.List[tp.List[tp.Dict[str, tp.Any]]] = json.loads(
out: tp.Dict[str, tp.Any] = json.loads(
self.query_cli(["committee-state"])
)
return out
Expand Down

0 comments on commit 25316b2

Please sign in to comment.