Skip to content

Commit

Permalink
render to disk by default
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sanche committed Oct 25, 2024
1 parent bee3e84 commit 36c78ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .cross_sync/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, output_path: str, ast_tree, header: str | None = None):
self.tree = ast_tree
self.header = header or ""

def render(self, with_formatter=True, save_to_disk: bool = False) -> str:
def render(self, with_formatter=True, save_to_disk: bool = True) -> str:
"""
Render the file to a string, and optionally save to disk
Expand Down

0 comments on commit 36c78ba

Please sign in to comment.