Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pkalita-lbl committed Dec 10, 2024
1 parent 334b591 commit 5e11b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmdc_server/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ async def submit_metadata(
user: models.User = Depends(get_current_user),
):
# Old versions of the Field Notes app will continue to send a string for packageName
# for a little white. This code is to ease that transition and can be removed in the future.
# for a little while. This code is to ease that transition and can be removed in the future.
if isinstance(body.metadata_submission.packageName, str):
if body.metadata_submission.packageName:
body.metadata_submission.packageName = [body.metadata_submission.packageName]
Expand Down

0 comments on commit 5e11b51

Please sign in to comment.