tests.user   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
from mongomantic import MongoDBModel
2
3
4
class User(MongoDBModel):
5
6
    first_name: str
7
    last_name: str
8
    email: str
9
    age: int
10