File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cldk/analysis/java/codeanalyzer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ def _init_codeanalyzer(self, analysis_level=1) -> JApplication:
205
205
logger .info ("Reading analysis from the pipe." )
206
206
# If target file is provided, the input is merged into a single string and passed to codeanalyzer
207
207
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 ])
209
209
codeanalyzer_args = codeanalyzer_exec + shlex .split (
210
210
f"-i { Path (self .project_dir )} --analysis-level={ analysis_level } -t { target_file_options } "
211
211
)
@@ -231,7 +231,7 @@ def _init_codeanalyzer(self, analysis_level=1) -> JApplication:
231
231
analysis_json_path_file = Path (self .analysis_json_path ).joinpath ("analysis.json" )
232
232
# If target file is provided, the input is merged into a single string and passed to codeanalyzer
233
233
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 ])
235
235
codeanalyzer_args = codeanalyzer_exec + shlex .split (
236
236
f"-i { Path (self .project_dir )} --analysis-level={ analysis_level } "
237
237
f" -o { self .analysis_json_path } -t { target_file_options } "
You can’t perform that action at this time.
0 commit comments