Skip to content

Commit

Permalink
Add NotImplementedError
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanFauble committed Jan 7, 2025
1 parent ea4e27e commit 4b59968
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions synapseclient/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,9 @@ def add_column(
index: The index to insert the column at. If not passed in the column will
be added to the end of the list.
"""
if index is not None:
raise NotImplementedError("Index is not yet implemented")

if isinstance(column, list):
for col in column:
self.columns[col.name] = col
Expand Down

0 comments on commit 4b59968

Please sign in to comment.