PR review fixes: Add typing info to the get_inodes() class method.

This commit is contained in:
Gustavo Moreira
2024-08-24 10:55:01 +10:00
parent d964e6f61d
commit d627f243e2
@@ -6,7 +6,7 @@ import math
import logging
import datetime
from dataclasses import dataclass, astuple
from typing import List, Set, Type
from typing import List, Set, Type, Iterable
from volatility3.framework import renderers, interfaces
from volatility3.framework.renderers import format_hints
@@ -205,7 +205,7 @@ class Files(plugins.PluginInterface, timeliner.TimeLinerInterface):
cls,
context: interfaces.context.ContextInterface,
config_path: str,
):
) -> Iterable[InodeInternal]:
"""Retrieves the inodes from the superblocks
Args: