Skip to content

Commit fc7de54

Browse files
feat: Add temporary and no_search parameters to Config constructor
Co-authored-by: aider (gemini/gemini-2.5-pro) <[email protected]>
1 parent 773f826 commit fc7de54

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/src/ontoenv.pyi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ class Config:
1313
root: Root directory for the environment.
1414
includes: Optional list of patterns to include.
1515
excludes: Optional list of patterns to exclude.
16+
temporary: Flag to create a temporary environment.
17+
no_search: Flag to disable searching for ontologies in local directories.
1618
"""
1719
def __init__(
1820
self,
@@ -24,6 +26,8 @@ class Config:
2426
root: str = ".",
2527
includes: Optional[List[str]] = None,
2628
excludes: Optional[List[str]] = None,
29+
temporary: bool = False,
30+
no_search: bool = False,
2731
) -> None:
2832
"""
2933
Initialize the Config object with the given parameters.

0 commit comments

Comments
 (0)