File tree 1 file changed +11
-2
lines changed 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -611,9 +611,18 @@ async function run() {
611
611
) ;
612
612
}
613
613
614
- if ( await codeql . supportsFeature ( ToolsFeature . PythonDefaultIsToNotExtractStdlib ) ) {
614
+ if (
615
+ await codeql . supportsFeature (
616
+ ToolsFeature . PythonDefaultIsToNotExtractStdlib ,
617
+ )
618
+ ) {
615
619
// 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
+ ) {
617
626
// We are in a situation where the feature flag is not rolled out,
618
627
// so we need to suppress the new default behavior.
619
628
core . exportVariable ( "CODEQL_EXTRACTOR_PYTHON_EXTRACT_STDLIB" , "true" ) ;
You can’t perform that action at this time.
0 commit comments