Skip to content

Commit

Permalink
Merge pull request #81 from talgatomarov/backend-motion-trailing-space
Browse files Browse the repository at this point in the history
Remove trailing space in the request motion text
  • Loading branch information
talgatomarov committed Aug 8, 2020
2 parents 83b3309 + 714b4c7 commit 7fa5f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/routers/generate/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@router.post("", response_model=GenerateResponse)
async def generate_motion(request: GenerateRequest):
# Beginning of the motion
prefix = request.prefix
prefix = request.prefix.strip()
# High temperature results in more "unpredictible" results
temperature = request.temperature

Expand Down

0 comments on commit 7fa5f77

Please sign in to comment.