Skip to content

Commit a2d0974

Browse files
committed
Fix errors
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 7c97244 commit a2d0974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scanpipe/pipes/d2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,7 @@ def get_elf_file_dwarf_paths(location):
18551855
"""Retrieve dwarf paths for ELF files."""
18561856
paths = get_dwarf_paths(location)
18571857
compiled_paths = paths.get("compiled_paths") or []
1858-
included_paths = (paths.get("included_paths") or [],)
1858+
included_paths = paths.get("included_paths") or []
18591859
dwarf_paths = {}
18601860
if compiled_paths:
18611861
dwarf_paths["dwarf_compiled_paths"] = compiled_paths

0 commit comments

Comments
 (0)