Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/codegen/runner/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Codegen Runner
A codegen module to run codemods against a Codebase graph with a managed lifecycle.
A module to run functions with managed state + lifecycle.

### Dependencies
- [codegen.sdk](https://github.com/codegen-sh/codegen-sdk/tree/develop/src/codegen/sdk)
Expand Down
2 changes: 0 additions & 2 deletions src/codegen/sdk/core/codebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,6 @@ def commit(self, sync_graph: bool = True) -> None:
Returns:
None
"""
if not self.G.config.feature_flags.debug:
self.log("Warning: using a method that may break codemod execution. This is unnessecary in most cases. You should use this only if you are certian it's nessecary")
self.G.commit_transactions(sync_graph=sync_graph and self.G.config.feature_flags.sync_enabled)

@noapidoc
Expand Down
Loading