Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Oct 6, 2024
1 parent cd61b87 commit 6a2fe7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/app/codegen/scene_nim.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ def write_source(self) -> str:
background_color = "#000000"
scene_background_color = wrap_color(sanitize_nim_string(str(background_color)))

scene_source = f"""# This code is autogenerated.
scene_source = f"""# This file is autogenerated
{{.warning[UnusedImport]: off.}}
import pixie, json, times, strformat, strutils, sequtils, options, algorithm
Expand Down
2 changes: 1 addition & 1 deletion e2e/makescenes.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
scene_nim = write_scene_nim(frame, scene_data)
scene_file_path = generated_dir / f'scene_{scene_name}.nim'
with open(scene_file_path, 'w') as scene_file:
scene_file.write("# This file is autogenerated\n" + scene_nim)
scene_file.write(scene_nim)

scenes_nim = write_scenes_nim(frame)
scenes_nim_file_path = generated_dir / 'scenes.nim'
Expand Down

0 comments on commit 6a2fe7f

Please sign in to comment.