Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit 5a271dc

Browse files
committed
1 parent 177ca5a commit 5a271dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

relational/relation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def load(filename: Union[str, Path]) -> 'Relation':
8989
for row in loaded['content']:
9090
if len(row) != len(header):
9191
raise ValueError(f'Line {row} contains an incorrect amount of values')
92-
t_row: Tuple[Optional[Union[int, float, str, Rdate]], ...] = load(row, Tuple[Optional[Union[int, float, str, Rdate]], ...])
92+
t_row: Tuple[Optional[Union[int, float, str, Rdate]], ...] = load(row, Tuple[Optional[Union[int, float, str, Rdate]], ...]) # type: ignore
9393
content.append(t_row)
9494
return Relation(header, frozenset(content))
9595

0 commit comments

Comments
 (0)