From 8862d951b3a66c8e8c9f644022fe36b792851f1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Patron?= Date: Mon, 23 Dec 2024 14:32:17 +0100 Subject: [PATCH] Fix type for BlockData --- tig-benchmarker/common/structs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tig-benchmarker/common/structs.py b/tig-benchmarker/common/structs.py index c746f3d..c2d29f1 100644 --- a/tig-benchmarker/common/structs.py +++ b/tig-benchmarker/common/structs.py @@ -161,8 +161,8 @@ class BlockDetails(FromDict): @dataclass class BlockData(FromDict): - confirmed_ids: Dict[str, Set[int]] - active_ids: Dict[str, Set[int]] + confirmed_ids: Dict[str, Set[str]] + active_ids: Dict[str, Set[str]] @dataclass class Block(FromDict):