Skip to content

Commit a82e0bb

Browse files
committed
update pyi
1 parent e26af3c commit a82e0bb

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

python/src/ontoenv.pyi

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,20 @@ class OntoEnv:
5959

6060
def update(self, all: bool = False) -> None: ...
6161

62-
def add(self, location: Union[str, Path], overwrite: bool = False, fetch_imports: bool = True) -> str: ...
62+
def add(
63+
self,
64+
location: Union[str, Path],
65+
overwrite: bool = False,
66+
fetch_imports: bool = True,
67+
force: bool = False,
68+
) -> str: ...
6369

64-
def add_no_imports(self, location: Union[str, Path], overwrite: bool = False) -> str: ...
70+
def add_no_imports(
71+
self,
72+
location: Union[str, Path],
73+
overwrite: bool = False,
74+
force: bool = False,
75+
) -> str: ...
6576

6677
def get_graph(self, uri: str) -> Graph: ...
6778

0 commit comments

Comments
 (0)