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