Skip to content

Commit ee4e578

Browse files
committed
feat(pyoaev): up linter
1 parent 50e8783 commit ee4e578

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyoaev/apis/vulnerability.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
class Vulnerability(RESTObject):
88
_id_attr = "vulnerability_id"
99

10+
1011
class VulnerabilityManager(RESTManager):
1112
_path = "/vulnerabilities"
1213

1314
@exc.on_http_error(exc.OpenAEVUpdateError)
1415
def upsert(self, data: Dict[str, Any], **kwargs: Any) -> Dict[str, Any]:
1516
path = f"{self.path}/bulk"
1617
result = self.openaev.http_post(path, post_data=data, **kwargs)
17-
return result
18+
return result

0 commit comments

Comments
 (0)