Skip to content

Commit

Permalink
Add codeql suppression (#8134)
Browse files Browse the repository at this point in the history
* Add codeql suppression

* Remove changes from unrelated branch
  • Loading branch information
AdamYoblick authored Jan 8, 2025
1 parent ac85260 commit 75ed3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/Product/Common/Infrastructure/ProcessOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public static ProcessOutput Run(
psi.Arguments = string.Join(" ",
arguments.Where(a => a != null).Select(QuoteSingleArgument));
} else {
psi.Arguments = string.Join(" ", arguments.Where(a => a != null));
psi.Arguments = string.Join(" ", arguments.Where(a => a != null)); // CodeQL [SM00406] Code ql is complaining, but this is a utility class that is called with many different file names.
}
psi.WorkingDirectory = workingDirectory;
psi.CreateNoWindow = !visible;
Expand Down

0 comments on commit 75ed3e9

Please sign in to comment.