Skip to content

Commit

Permalink
Merge pull request #392 from TheHive-Project/389-fix-cortexs-outputan…
Browse files Browse the repository at this point in the history
…alyzerjob-type

#389 - Fix types.cortex.OutputAnalyzerJob
  • Loading branch information
Kamforka authored Feb 16, 2025
2 parents 7082f0e + d0b25a4 commit daaac8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thehive4py/types/cortex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, TypedDict, List, Dict
from typing import Any, Dict, List, TypedDict


class OutputAnalyzerRequired(TypedDict):
Expand Down Expand Up @@ -41,7 +41,7 @@ class OutputAnalyzerJobRequired(TypedDict):
operations: str


class OutputAnalyzerJob(TypedDict, total=False):
class OutputAnalyzerJob(OutputAnalyzerJobRequired, total=False):
_updatedBy: str
_updatedAt: str
endDate: str
Expand Down

0 comments on commit daaac8d

Please sign in to comment.