-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split up core in smaller sub modules (#821)
* mv MathExpression * mv SpatialSeries * mv GenericSeries, SeriesParam * mv TimeSeries * added MathematicalExpression to __all__, sorted lines * use abs imports in core module (e.g. from weldx import MathematicalExpression broke) actually this is very strange, as the relative import triggers a behaviour to use relative import all over the place. The weldx.util.util pkg imports an attr from asdf, but this import would be tried to resolve by Python (3.10) to the weldx internal "asdf" package. * patch mod of "core" pkg
- Loading branch information
Showing
7 changed files
with
970 additions
and
921 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""Collection of common classes and functions.""" | ||
# isort:skip_file | ||
from weldx.core.math_expression import MathematicalExpression | ||
from weldx.core.generic_series import GenericSeries | ||
from weldx.core.spatial_series import SpatialSeries | ||
from weldx.core.time_series import TimeSeries | ||
|
||
__all__ = ["MathematicalExpression", "GenericSeries", "SpatialSeries", "TimeSeries"] | ||
|
||
|
||
from ..util import _patch_mod_all # noqa | ||
|
||
_patch_mod_all("weldx.core") | ||
del _patch_mod_all |
Oops, something went wrong.