Skip to content

Commit fcaf886

Browse files
committed
formatting
1 parent 9b667e9 commit fcaf886

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
@@ -606,9 +606,18 @@ async function run() {
606606
);
607607
}
608608

609-
if (await codeql.supportsFeature(ToolsFeature.PythonDefaultIsToNotExtractStdlib)) {
609+
if (
610+
await codeql.supportsFeature(
611+
ToolsFeature.PythonDefaultIsToNotExtractStdlib,
612+
)
613+
) {
610614
// We are in the case where the default has switched to not extracting the stdlib.
611-
if (!(await features.getValue(Feature.CodeqlActionPythonDefaultIsToNotExtractStdlib, codeql))) {
615+
if (
616+
!(await features.getValue(
617+
Feature.CodeqlActionPythonDefaultIsToNotExtractStdlib,
618+
codeql,
619+
))
620+
) {
612621
// We are in a situation where the feature flag is not rolled out,
613622
// so we need to suppress the new default behavior.
614623
core.exportVariable("CODEQL_EXTRACTOR_PYTHON_EXTRACT_STDLIB", "true");

0 commit comments

Comments
 (0)