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