Skip to content

Commit

Permalink
Merge pull request #1318 from Sage-Bionetworks/develop-fix-pygsheet-f…
Browse files Browse the repository at this point in the history
…ds919

[bug fix] Added `fit=true` parameter when setting a dataframe
  • Loading branch information
linglp authored Dec 1, 2023
2 parents 2a8d22e + 8d0a26b commit 7f5fd6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schematic/manifest/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ def set_dataframe_by_url(
sh = gc.open_by_url(manifest_url)
wb = sh[0]

wb.set_dataframe(manifest_df, (1, 1))
wb.set_dataframe(manifest_df, (1, 1), fit=True)

# update validation rules (i.e. no validation rules) for out of schema columns, if any
# TODO: similarly clear formatting for out of schema columns, if any
Expand Down

0 comments on commit 7f5fd6d

Please sign in to comment.