No autocasts needed

All casting is done when loading
master
Salvo 'LtWorf' Tomaselli 2020-08-19 08:25:21 +07:00
parent 7800a157bf
commit 5c8cbde27a
No known key found for this signature in database
GPG Key ID: B3A7CF0C801886CF
1 changed files with 1 additions and 1 deletions

@ -148,7 +148,7 @@ class Relation(NamedTuple):
content = []
for i in self.content:
# Fills the attributes dictionary with the values of the tuple
attributes = {attr: i[j].autocast()
attributes = {attr: i[j]
for j, attr in enumerate(self.header)
}