File tree Expand file tree Collapse file tree 2 files changed +21
-4
lines changed
src/compas/datastructures Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 2323 Part
2424
2525
26+ Exceptions
27+ ==========
28+
29+ .. autosummary::
30+ :toctree: generated/
31+ :nosignatures:
32+
33+ AssemblyError
34+ FeatureError
35+
36+
2637Functions
2738=========
2839
296307
297308from .assembly import (
298309 Assembly ,
299- Part
310+ Part ,
311+ AssemblyError ,
312+ FeatureError ,
300313)
301314
302315if not compas .IPY :
439452 # Assemblies
440453 'Assembly' ,
441454 'Part' ,
455+ 'AssemblyError' ,
456+ 'FeatureError' ,
442457]
443458
444459if not compas .IPY :
Original file line number Diff line number Diff line change 1- from __future__ import print_function
21from __future__ import absolute_import
32from __future__ import division
3+ from __future__ import print_function
44
5- from .assembly import Assembly # noqa: F401 F403
6- from .part import Part # noqa: F401 F403
5+ from .exceptions import AssemblyError # noqa: F401
6+ from .exceptions import FeatureError # noqa: F401
7+ from .assembly import Assembly # noqa: F401
8+ from .part import Part # noqa: F401
You can’t perform that action at this time.
0 commit comments