Skip to content

Commit

Permalink
fix: Disable python codegen support by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasternak committed Oct 11, 2024
1 parent 89bbb7a commit f0636bd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import com.google.idea.blaze.base.projectview.section.sections.BuildFlagsSection;
import com.google.idea.blaze.base.projectview.section.sections.DirectoryEntry;
import com.google.idea.blaze.base.projectview.section.sections.DirectorySection;
import com.google.idea.blaze.base.projectview.section.sections.EnablePythonCodegenSupport;
import com.google.idea.blaze.base.projectview.section.sections.ExcludeTargetSection;
import com.google.idea.blaze.base.projectview.section.sections.ExcludedSourceSection;
import com.google.idea.blaze.base.projectview.section.sections.ImportSection;
Expand Down Expand Up @@ -122,6 +123,7 @@ public void testProjectViewSetSerializable() {
.set(new WorkspacePath("test")))
.add(ScalarSection.builder(UseExclusionPatternsSection.KEY).set(false))
.add(ScalarSection.builder(ViewProjectRootSection.KEY).set(false))
.add(ScalarSection.builder(EnablePythonCodegenSupport.KEY).set(false))
.build())
.build();

Expand Down

0 comments on commit f0636bd

Please sign in to comment.