No autocasts needed

All casting is done when loading
This commit is contained in:
Salvo 'LtWorf' Tomaselli 2020-08-19 08:25:21 +02:00
parent 7800a157bf
commit 5c8cbde27a
No known key found for this signature in database
GPG Key ID: B3A7CF0C801886CF

View File

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