Skip to content

Commit d627f24

Browse files
committed
PR review fixes: Add typing info to the get_inodes() class method.
1 parent d964e6f commit d627f24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/linux/pagecache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import logging
77
import datetime
88
from dataclasses import dataclass, astuple
9-
from typing import List, Set, Type
9+
from typing import List, Set, Type, Iterable
1010

1111
from volatility3.framework import renderers, interfaces
1212
from volatility3.framework.renderers import format_hints
@@ -205,7 +205,7 @@ def get_inodes(
205205
cls,
206206
context: interfaces.context.ContextInterface,
207207
config_path: str,
208-
):
208+
) -> Iterable[InodeInternal]:
209209
"""Retrieves the inodes from the superblocks
210210
211211
Args:

0 commit comments

Comments
 (0)