mirror of https://gitlab.com/pamhyr/pamhyr2
BC: Edit: Minor fix in paste feature.
parent
6d14366bf7
commit
33526d4f09
|
|
@ -89,8 +89,8 @@ class BoundaryCondition(object):
|
|||
else:
|
||||
new_1 = self._types[i](data[j].replace(",", "."))
|
||||
else:
|
||||
new_0 = self._types[0](data[0])
|
||||
new_1 = self._types[1](data[1])
|
||||
new_0 = self._types[0](data[0].replace(",", "."))
|
||||
new_1 = self._types[1](data[1].replace(",", "."))
|
||||
|
||||
return (new_0, new_1)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from tools import timer, trace
|
||||
|
||||
from View.ASubWindow import ASubMainWindow
|
||||
from View.ListedSubWindow import ListedSubWindow
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue