Skip to content

Commit

Permalink
feat(app): update example config file comment
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Oct 9, 2024
1 parent 8d6996c commit 734631b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions invokeai/app/services/config/config_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ def write_file(self, dest_path: Path, as_example: bool = False) -> None:
)

if as_example:
file.write(
"# This is an example file with default and example settings. Use the values here as a baseline.\n\n"
)
file.write("# This is an example file with default and example settings.\n")
file.write("# You should not copy this whole file into your config.\n")
file.write("# Only add the settings you need to change to your config file.\n\n")
file.write("# Internal metadata - do not edit:\n")
file.write(yaml.dump(meta_dict, sort_keys=False))
file.write("\n")
Expand Down

0 comments on commit 734631b

Please sign in to comment.