Skip to content

Commit 7a726be

Browse files
committed
suppress exception chaining
1 parent 13a7446 commit 7a726be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsons/etl/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(
7070
raise ValueError(
7171
f"Could not initialize table from input type. "
7272
f"Got {type(lst)}, expected list, tuple, or petl Table"
73-
)
73+
) from None
7474

7575
try:
7676
peek = next(iterable_data)

0 commit comments

Comments
 (0)