[Minor] Fix config example to not assign a return value.
This commit is contained in:
parent
197f1f5496
commit
38a5f41c30
|
@ -12,7 +12,7 @@ configs_path = 'configs/'
|
||||||
from eth2spec.config import config_util
|
from eth2spec.config import config_util
|
||||||
from eth2spec.phase0 import spec
|
from eth2spec.phase0 import spec
|
||||||
from importlib import reload
|
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 to make loaded config effective
|
||||||
reload(spec)
|
reload(spec)
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue