Skip to content

Commit ce5f900

Browse files
committed
formatting
1 parent 65dd816 commit ce5f900

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/init-action.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,18 @@ async function run() {
611611
);
612612
}
613613

614-
if (await codeql.supportsFeature(ToolsFeature.PythonDefaultIsToNotExtractStdlib)) {
614+
if (
615+
await codeql.supportsFeature(
616+
ToolsFeature.PythonDefaultIsToNotExtractStdlib,
617+
)
618+
) {
615619
// We are in the case where the default has switched to not extracting the stdlib.
616-
if (!(await features.getValue(Feature.CodeqlActionPythonDefaultIsToNotExtractStdlib, codeql))) {
620+
if (
621+
!(await features.getValue(
622+
Feature.CodeqlActionPythonDefaultIsToNotExtractStdlib,
623+
codeql,
624+
))
625+
) {
617626
// We are in a situation where the feature flag is not rolled out,
618627
// so we need to suppress the new default behavior.
619628
core.exportVariable("CODEQL_EXTRACTOR_PYTHON_EXTRACT_STDLIB", "true");

0 commit comments

Comments
 (0)