Skip to content

Commit

Permalink
Changes to bundle_utils/etc related to SMaHT ingestion work.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Nov 9, 2023
1 parent d49fd69 commit 4e21b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcicutils/sheet_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def is_comment_row(row: Tuple[Optional[Any]]) -> bool:
return False

@staticmethod
def remove_trailing_none_values(values: List[Any]) -> list[Any]:
def remove_trailing_none_values(values: List[Any]) -> List[Any]:
for index in range(len(values) - 1, -1, -1):
if values[index] is not None:
break
Expand Down

0 comments on commit 4e21b85

Please sign in to comment.