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

some more SIfloats.

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