Skip to content

Commit fb9f680

Browse files
Fixed code lint
1 parent 79a7db4 commit fb9f680

File tree

1 file changed

+13
-0
lines changed
  • src/python_testing/matter_testing_infrastructure/chip/testing

1 file changed

+13
-0
lines changed

src/python_testing/matter_testing_infrastructure/chip/testing/spec_parsing.py

+13
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,19 @@ class DataModelLevel(str, Enum):
520520
kDeviceType = 'device_types'
521521

522522

523+
def _get_data_model_root() -> pathlib.PosixPath:
524+
"""Attempts to find the 'data_model' directory inside the 'chip.testing' package."""
525+
# Access the 'chip.testing' package directly via importlib and pkg_resources
526+
package = pkg_resources.files(importlib.import_module('chip.testing')) # Corrected: using importlib
527+
try:
528+
# We assume the 'data_model' directory is inside the package itself
529+
data_model_root = package / 'data_model'
530+
except FileNotFoundError:
531+
raise FileNotFoundError(f"Data model directory not found in the package at {data_model_root}")
532+
533+
return data_model_root
534+
535+
523536
def get_data_model_directory(data_model_directory: Union[str], data_model_level: str) -> pathlib.PosixPath:
524537
"""
525538
Get the directory of the data model for a specific version and level from the installed package.

0 commit comments

Comments
 (0)