We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773f826 commit fc7de54Copy full SHA for fc7de54
python/src/ontoenv.pyi
@@ -13,6 +13,8 @@ class Config:
13
root: Root directory for the environment.
14
includes: Optional list of patterns to include.
15
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.
18
"""
19
def __init__(
20
self,
@@ -24,6 +26,8 @@ class Config:
24
26
root: str = ".",
25
27
includes: Optional[List[str]] = None,
28
excludes: Optional[List[str]] = None,
29
+ temporary: bool = False,
30
+ no_search: bool = False,
31
) -> None:
32
33
Initialize the Config object with the given parameters.
0 commit comments