Reintroduce public API for IfcTester after ruff purge 72f8218fcd

This commit is contained in:
Dion Moult
2026-01-27 15:57:19 +11:00
parent de6f6cc8b2
commit e41df68124
2 changed files with 9 additions and 1 deletions
+2 -1
View File
@@ -16,6 +16,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with IfcTester. If not, see <http://www.gnu.org/licenses/>.
from .ids import open as open
from .ids import open
__version__ = version = "0.0.0"
__all__ = ["open"]
+7
View File
@@ -28,14 +28,21 @@ from xmlschema import XMLSchema, etree_tostring
from xmlschema.validators.exceptions import XMLSchemaValidationError
from .facet import (
Attribute,
Cardinality,
Classification,
Entity,
Facet,
FacetFailure,
Material,
PartOf,
Property,
Restriction,
get_pset,
get_psets,
)
__all__ = ["Attribute", "Classification", "Entity", "Material", "PartOf", "Property", "Restriction"]
cwd = os.path.dirname(os.path.realpath(__file__))
schema = None