Skip to content

Commit

Permalink
final picklist fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Shom770 committed Mar 3, 2024
1 parent 9d2bfbd commit bd9e577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/page_managers/picklist_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def write_to_notion(self, dataframe: DataFrame) -> None:
parent={"type": "database_id", "database_id": db_id},
properties={
column: {
"number": dataframe[dataframe["Team Number"] == team_name][column].iloc[0]
"number": dataframe[dataframe["Team Number"] == team_name][column].tolist()[0]
} for column in dataframe.columns if column != "Team Number"
} | {
"Team Name": {"id": "title", "title": [{"text": {"content": team_name}}]},
Expand Down

0 comments on commit bd9e577

Please sign in to comment.