[Minor] Fix config example to not assign a return value.

This commit is contained in:
Nathaniel Jensen 2020-05-08 20:12:44 +10:00
parent 197f1f5496
commit 38a5f41c30
No known key found for this signature in database
GPG Key ID: 1180DD721B84AC03
1 changed files with 1 additions and 1 deletions

View File

@ -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)
```