Skip to content

Commit 9004087

Browse files
author
Priyadarshini Piramanayagam
committed
remove is_finalized
1 parent a70692a commit 9004087

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nisystemlink/clients/result/models/_result.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from datetime import datetime
22
from enum import Enum
33
from typing import Dict, List, Optional
4+
from pydantic import Extra
45

56
from nisystemlink.clients.core._uplink._json_model import JsonModel
67

@@ -85,5 +86,5 @@ class Result(JsonModel):
8586
workspace: Optional[str]
8687
"""The id of the workspace that this product belongs to."""
8788

88-
is_finalized: Optional[bool]
89-
"""Whether the result is finalized."""
89+
class Config:
90+
extra = Extra.allow

0 commit comments

Comments
 (0)