From 38a5f41c30743ac97794c8a442ea28032b5d3319 Mon Sep 17 00:00:00 2001 From: Nathaniel Jensen Date: Fri, 8 May 2020 20:12:44 +1000 Subject: [PATCH] [Minor] Fix config example to not assign a return value. --- tests/core/pyspec/eth2spec/config/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/config/README.md b/tests/core/pyspec/eth2spec/config/README.md index ea2b2ccd8..314e68aae 100644 --- a/tests/core/pyspec/eth2spec/config/README.md +++ b/tests/core/pyspec/eth2spec/config/README.md @@ -12,7 +12,7 @@ configs_path = 'configs/' from eth2spec.config import config_util from eth2spec.phase0 import spec from importlib import reload -my_presets = config_util.prepare_config(configs_path, 'mainnet') +config_util.prepare_config(configs_path, 'mainnet') # reload spec to make loaded config effective reload(spec) ```