Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion case_mapping/uco/tool.py
Original file line numberDiff line numberDiff line change
@@ -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
Expand Down