Skip to content

Commit d932f57

Browse files
committed
Restore missing entry in FIle dataclass
1 parent 9919e7c commit d932f57

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

src/bindiff/file.py

+13-12
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ class File:
1616
"""
1717

1818
# fmt: off
19-
id: int #: Unique ID of the file in database
20-
filename: str #: file path
21-
exefilename: str #: file name
22-
hash: str #: SHA256 hash of the file
23-
functions: int #: total number of functions
24-
libfunctions: int #: total number of functions identified as library
25-
calls: int #: number of calls
26-
basicblocks: int #: number of basic blocks
27-
libbasicblocks: int #: number of basic blocks belonging to library functions
28-
edges: int #: number of edges in callgraph
29-
libedges: int #: number of edges in callgraph addressing a library
30-
instructions: int #: number of instructions
19+
id: int #: Unique ID of the file in database
20+
filename: str #: file path
21+
exefilename: str #: file name
22+
hash: str #: SHA256 hash of the file
23+
functions: int #: total number of functions
24+
libfunctions: int #: total number of functions identified as library
25+
calls: int #: number of calls
26+
basicblocks: int #: number of basic blocks
27+
libbasicblocks: int #: number of basic blocks belonging to library functions
28+
edges: int #: number of edges in callgraph
29+
libedges: int #: number of edges in callgraph addressing a library
30+
instructions: int #: number of instructions
31+
libinstructions: int #: number of instructions in library functions
3132
# fmt: on
3233

3334

0 commit comments

Comments
 (0)