Exemplo n.º 1
0
 def create(self, project: Project, meta: Dict[Any, Any]) -> Example:
     return Example(
         uuid=uuid.uuid4(),
         project=project,
         filename=self.filename,
         upload_name=self.upload_name,
         text=self.text,
         meta=meta,
     )
Exemplo n.º 2
0
 def create(self, project: Project) -> Example:
     return Example(
         uuid=self.uuid,
         project=project,
         filename=self.filename,
         upload_name=self.upload_name,
         text=None,
         meta=self.meta,
     )