Skip to content

Commit b6b7768

Browse files
committed
linting
1 parent 7192a5f commit b6b7768

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

debug_manifest/debug_manifest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def debug_manifest(source: YamlDeclarativeSource, args: list[str]) -> None:
1919

2020
def _register_components_from_file(filepath: str) -> None:
2121
"""
22-
Dynamically load a Python file containing custom component definitions and register it
23-
under specific module names in sys.modules to ensure that these classes can be properly
22+
Dynamically load a Python file containing custom component definitions and register it
23+
under specific module names in sys.modules to ensure that these classes can be properly
2424
resolved during hydration of the manifest yaml file.
2525
2626
This is a somewhat hacky replacement for the file structure manipulation we do when building
@@ -29,7 +29,7 @@ def _register_components_from_file(filepath: str) -> None:
2929
import importlib.util
3030
import sys
3131
from pathlib import Path
32-
32+
3333
components_path = Path(filepath)
3434
if not components_path.exists():
3535
raise FileNotFoundError(f"Components file not found: {components_path}")

0 commit comments

Comments
 (0)