diff --git a/case_mapping/uco/tool.py b/case_mapping/uco/tool.py index 52785c4..b43c0da 100644 --- a/case_mapping/uco/tool.py +++ b/case_mapping/uco/tool.py @@ -1,9 +1,15 @@ +from typing import Optional + from ..base import ObjectEntity class Tool(ObjectEntity): def __init__( - self, tool_name=None, tool_version=None, tool_type=None, tool_creator=None + self, + tool_name=None, + tool_version=None, + tool_type=None, + tool_creator: Optional[ObjectEntity] = None, ): """ The Uco tool is a way to define the specifics of a tool used in an investigation