From 310eaedc8e4c9f52f4eb7a80d72d5c4d750182ca Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 24 Jul 2026 18:43:11 +0500 Subject: [PATCH] stub: group plugin search paths methods --- src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi b/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi index 3b62676650..29b90f1909 100644 --- a/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi +++ b/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi @@ -1621,6 +1621,8 @@ class uninitialized_tag: ... def arrange_polygons( settings: arrange_polygon_settings, polygons: Sequence[polygon_2], logger: logger | None = None ) -> tuple[polygon_2, ...]: ... +def get_plugin_search_paths() -> tuple[str, ...]: ... +def set_plugin_search_paths(paths: Sequence[str]) -> None: ... def clear_plugin_search_paths() -> None: ... def clear_schemas(): ... def construct_iterator(geometry_library, settings, file, num_threads, logger=None): ... @@ -1634,7 +1636,6 @@ def create_geometry_serializer(*args) -> GeometrySerializer: ... def create_shape(*args): ... def flatten(deep): ... def get_feature(x): ... -def get_plugin_search_paths() -> tuple[str, ...]: ... def get_info_cpp(v: entity_instance, recursive: bool, include_identifier: bool) -> dict[str, Any]: ... def get_log(): ... def helmert_curve_point(A0, A1, A2, s): ... @@ -1653,7 +1654,6 @@ def schema_by_name(schema_name: str) -> schema_definition: ... def schema_names() -> tuple[str, ...]: ... def serialise(schema_name, shape_str, advanced=True): ... def set_feature(x, v): ... -def set_plugin_search_paths(paths) -> None: ... def set_log_format_json(): ... def set_log_format_text(): ... def stream_from_string(data): ...