diff --git a/relational/relation.py b/relational/relation.py index ee24f50..7dd8cae 100644 --- a/relational/relation.py +++ b/relational/relation.py @@ -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) }