Skip to content

Commit 24fe8a4

Browse files
fix tox error
Signed-off-by: Wonjae Park <[email protected]>
1 parent 4393646 commit 24fe8a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fosslight_source/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def create_report_file(
148148
output_path: str = "", output_files: list = [],
149149
output_extensions: list = [], correct_mode: bool = True,
150150
correct_filepath: str = "", path_to_scan: str = "", path_to_exclude: list = [],
151-
formats: list = [], excluded_file_list = []
151+
formats: list = [], excluded_file_list: list = []
152152
) -> 'ScannerItem':
153153
"""
154154
Create report files for given scanned result.
@@ -357,7 +357,7 @@ def run_scanners(
357357
merged_result = merge_results(scancode_result, scanoss_result, spdx_downloads)
358358
scan_item = create_report_file(start_time, merged_result, license_list, scanoss_result, selected_scanner,
359359
print_matched_text, output_path, output_files, output_extensions, correct_mode,
360-
correct_filepath, path_to_scan, path_to_exclude, formats, excluded_file_list)
360+
correct_filepath, path_to_scan, path_to_exclude, formats, excluded_file_list)
361361
else:
362362
print_help_msg_source_scanner()
363363
result_log[RESULT_KEY] = "Unsupported scanner"

0 commit comments

Comments
 (0)