Passed
Push — master ( 622bd5...daf764 )
by Mingyu
57s
created

{{cookiecutter.project_slug}}.app.views.sample.schema   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
from pydantic import BaseModel, conint
2
3
4
class Post(BaseModel):
5
    age: conint(gt=0)
6
    name: str
7