We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb177b4 commit 76ef739Copy full SHA for 76ef739
socketdev/fullscans/__init__.py
@@ -106,6 +106,7 @@ class FullScanParams:
106
set_as_pending_head: Optional[bool] = None
107
tmp: Optional[bool] = None
108
scan_type: Optional[ScanType] = None
109
+ workspace: Optional[str] = None
110
111
def __getitem__(self, key):
112
return getattr(self, key)
@@ -131,6 +132,7 @@ def from_dict(cls, data: dict) -> "FullScanParams":
131
132
set_as_pending_head=data.get("set_as_pending_head"),
133
tmp=data.get("tmp"),
134
scan_type=ScanType(scan_type) if scan_type is not None else None,
135
+ workspace=data.get("workspace"),
136
)
137
138
0 commit comments