File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments