Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Asthestarsfalll committed Dec 9, 2024
1 parent 756b261 commit 570a7b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ module_dict, run_info = config.build_all(layz_cfg)
<details>
<summary>:sparkles:Module validation and lazy assignment</summary>

Validate parameters of modules before their initialization and call, which will save time from some serial long initialization.
Validate parameters of modules before their initialization and call, which will save time from some serial long initialization.

If there is any parameter missing, you can manually assign it to avoid crushing. It will be parsed to str, int, list, tuple, or dict.

Expand Down
4 changes: 2 additions & 2 deletions tests/test_a_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

import pytest

from excore import Registry, load_registries, _enable_excore_debug
from excore import Registry, _enable_excore_debug, load_registries

load_registries()

_enable_excore_debug()

import source_code as S
import source_code as S # noqa


def test_print():
Expand Down

0 comments on commit 570a7b0

Please sign in to comment.