79127771

Date: 2024-10-26 03:38:22
Score: 0.5
Natty:
Report link

Use constr instead str:

from ninja import Schema
from pydantic import constr

class TestSchema(Schema):
    name1: constr(min_length=6, max_length=6)
    name2: constr(max_length=6)
    name3: constr(min_length=6)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mateus Alves de Oliveira