Loading mod_param.py +3 −3 Original line number Diff line number Diff line Loading @@ -110,14 +110,14 @@ class ModParam(Mod): """ assert self.origpar result = '' fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + len(self.origpar) * '{:>14} \n' fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + 3 * '{:>14} ' + '\n' for par in self.origpar: cont_temp = cont_list[:] if (self.period and par[2] == self.period) or not self.period: par[1] = float(par[1]) + self.dpar cont_temp.extend(par) cont_temp.extend(par[:3]) result += fstring.format(*cont_temp) return result.rstrip() return result def check_line(self, list_line_to_check, list_entries): """ Loading Loading
mod_param.py +3 −3 Original line number Diff line number Diff line Loading @@ -110,14 +110,14 @@ class ModParam(Mod): """ assert self.origpar result = '' fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + len(self.origpar) * '{:>14} \n' fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + 3 * '{:>14} ' + '\n' for par in self.origpar: cont_temp = cont_list[:] if (self.period and par[2] == self.period) or not self.period: par[1] = float(par[1]) + self.dpar cont_temp.extend(par) cont_temp.extend(par[:3]) result += fstring.format(*cont_temp) return result.rstrip() return result def check_line(self, list_line_to_check, list_entries): """ Loading