Skip to content

Commit

Permalink
update return value
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsage1 committed Mar 20, 2024
1 parent d8e7f34 commit 8eb2ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/openchallenges/edam-etl/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def download_edam_csv(url: str, version: str) -> Optional[bool]:
return None


def transform_to_dataframe(version: str) -> pd.DataFrame:
def transform_to_dataframe(version: str) -> pd.DataFrame | None:
"""Transform the CSV to a DataFrame with indices starting from 1"""
print("Processing the EDAM concepts...")
try:
Expand Down

0 comments on commit 8eb2ca5

Please sign in to comment.