Skip to content

Commit

Permalink
fix: maximum length for recipe description
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasbpro committed Feb 16, 2021
1 parent e5976f4 commit 2924dbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
constants = {

# ---- INT values
'SHORT_LENGTH' : 10,
'MEDIUM_LENGTH' : 30,
'LONG_LENGTH' : 50,
'SHORT_LENGTH' : 20,
'MEDIUM_LENGTH' : 50,
'LONG_LENGTH' : 100,
'LONG_TEXT_DESCRIPTION' : 140,
'UNIT_LENGTH' : 2,
'PRICE_PRECISION' : 2,
Expand Down

0 comments on commit 2924dbf

Please sign in to comment.