From e821ddade25cd6ac6c0ab86a1e3aa70d09da14d9 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Thu, 7 Oct 2021 21:43:23 +0800 Subject: [PATCH] Remove the trailing comma --- tests/generators/epoch_processing/main.py | 2 +- tests/generators/fork_choice/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/generators/epoch_processing/main.py b/tests/generators/epoch_processing/main.py index f9c71f5e2..10893fc7d 100644 --- a/tests/generators/epoch_processing/main.py +++ b/tests/generators/epoch_processing/main.py @@ -20,7 +20,7 @@ if __name__ == "__main__": 'inactivity_updates', 'participation_flag_updates', 'sync_committee_updates', - ]}, + ]} altair_mods = combine_mods(_new_altair_mods, phase_0_mods) # No epoch-processing changes in Merge and previous testing repeats with new types, so no additional tests required. diff --git a/tests/generators/fork_choice/main.py b/tests/generators/fork_choice/main.py index 452b5854a..562f851d1 100644 --- a/tests/generators/fork_choice/main.py +++ b/tests/generators/fork_choice/main.py @@ -14,7 +14,7 @@ if __name__ == "__main__": # PowBlock's which should be resolved by `get_pow_block(hash: Hash32) -> PowBlock` function _new_merge_mods = {key: 'eth2spec.test.merge.fork_choice.test_' + key for key in [ 'on_merge_block', - ]}, + ]} merge_mods = combine_mods(_new_merge_mods, altair_mods) all_mods = {