File tree Expand file tree Collapse file tree 3 files changed +6
-17
lines changed Expand file tree Collapse file tree 3 files changed +6
-17
lines changed Original file line number Diff line number Diff line change 11from typing import Literal
22
3- from .mixin import ThinElement
3+ from .mixin import BaseElement
44
55
6- class Marker (ThinElement ):
6+ class Marker (BaseElement ):
77 """Zero length element to mark a particular position
88
99 The main purpose of this thin element is to name a position in the beamline.
1010 """
1111
1212 # Discriminator field
1313 kind : Literal ["Marker" ] = "Marker"
14+
15+ # Segment length in meters (m)
16+ # Always 0, cannot be modified
17+ length : Literal [0.0 ] = 0.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11from .BaseElement import BaseElement # noqa: F401
22from .ThickElement import ThickElement # noqa: F401
3- from .ThinElement import ThinElement # noqa: F401
You can’t perform that action at this time.
0 commit comments