Remove useless operations

master
Salvo 'LtWorf' Tomaselli 2020-08-18 15:38:08 +07:00
parent c61cea7806
commit c246c0715d
No known key found for this signature in database
GPG Key ID: B3A7CF0C801886CF
1 changed files with 2 additions and 2 deletions

@ -379,12 +379,12 @@ class Relation(NamedTuple):
res = ""
for f, attr in enumerate(self.header):
res += "%s" % (attr.ljust(2 + m_len[f]))
res += attr.ljust(2 + m_len[f])
for r in self.content:
res += "\n"
for col, i in enumerate(r):
res += "%s" % (i.ljust(2 + m_len[col]))
res += i.ljust(2 + m_len[col])
return res