File tree Expand file tree Collapse file tree
cldk/analysis/java/codeanalyzer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ def _init_codeanalyzer(self, analysis_level=1) -> JApplication:
205205 logger .info ("Reading analysis from the pipe." )
206206 # If target file is provided, the input is merged into a single string and passed to codeanalyzer
207207 if self .target_files :
208- target_file_options = '-t ' .join ([s .strip () for s in self .target_files ])
208+ target_file_options = ' -t ' .join ([s .strip () for s in self .target_files ])
209209 codeanalyzer_args = codeanalyzer_exec + shlex .split (
210210 f"-i { Path (self .project_dir )} --analysis-level={ analysis_level } -t { target_file_options } "
211211 )
@@ -231,7 +231,7 @@ def _init_codeanalyzer(self, analysis_level=1) -> JApplication:
231231 analysis_json_path_file = Path (self .analysis_json_path ).joinpath ("analysis.json" )
232232 # If target file is provided, the input is merged into a single string and passed to codeanalyzer
233233 if self .target_files :
234- target_file_options = '-t ' .join ([s .strip () for s in self .target_files ])
234+ target_file_options = ' -t ' .join ([s .strip () for s in self .target_files ])
235235 codeanalyzer_args = codeanalyzer_exec + shlex .split (
236236 f"-i { Path (self .project_dir )} --analysis-level={ analysis_level } "
237237 f" -o { self .analysis_json_path } -t { target_file_options } "
You can’t perform that action at this time.
0 commit comments