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 @@ -606,9 +606,18 @@ async function run() {
606
606
) ;
607
607
}
608
608
609
- if ( await codeql . supportsFeature ( ToolsFeature . PythonDefaultIsToNotExtractStdlib ) ) {
609
+ if (
610
+ await codeql . supportsFeature (
611
+ ToolsFeature . PythonDefaultIsToNotExtractStdlib ,
612
+ )
613
+ ) {
610
614
// 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
+ ) {
612
621
// We are in a situation where the feature flag is not rolled out,
613
622
// so we need to suppress the new default behavior.
614
623
core . exportVariable ( "CODEQL_EXTRACTOR_PYTHON_EXTRACT_STDLIB" , "true" ) ;
You can’t perform that action at this time.
0 commit comments