Skip to content
Snippets Groups Projects
Commit 2b0d2775 authored by Andreas Freise's avatar Andreas Freise
Browse files

some more SIfloats.

parent 328f1b88
No related branches found
No related tags found
No related merge requests found
......@@ -209,11 +209,11 @@ class space(Component):
@property
def L(self): return Param('L', self.__L)
@L.setter
def L(self,value): self.__L = float(value)
def L(self,value): self.__L = SIfloat(value)
@property
def n(self): return Param('n', self.__n)
@n.setter
def n(self,value): self.__n = float(value)
def n(self,value): self.__n = SIfloat(value)
@staticmethod
def parseFinesseText(text):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment