Fix typo in documentation comment

This commit is contained in:
linuskmr 2021-12-25 18:59:18 +01:00
parent 5c75a71609
commit 113d35201b

View file

@ -82,7 +82,7 @@ async def patch_tag(
if not db_tag:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
# Set all provided arguments in the database project
# Set all provided arguments in the database tag
for key, value in tag.dict(exclude_unset=True).items():
setattr(db_tag, key, value)