Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

14 rader
294 B

  1. from __future__ import absolute_import
  2. from datetime import date, datetime # noqa: F401
  3. from typing import List, Dict # noqa: F401
  4. from core import util
  5. from pydantic import BaseModel
  6. from .contact import contact # noqa: F401,E501
  7. class contacts(BaseModel):
  8. contacts: List[contact]