Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Black-Pearl25 committed Nov 25, 2022
1 parent 7f6590d commit 188d01e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion thehive4py/endpoints/observable_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def create(self, observable_type: InputObservableType) -> OutputObservableType:
)

def get(self, observable_type_id: str) -> OutputObservableType:
return self._session.make_request("GET", path=f"/api/v1/observable/type/{observable_type_id}")
return self._session.make_request(
"GET", path=f"/api/v1/observable/type/{observable_type_id}"
)

def delete(self, observable_type_id: str) -> None:
return self._session.make_request(
Expand Down

0 comments on commit 188d01e

Please sign in to comment.