Skip to content

Commit b5ccb6f

Browse files
feat(app): update example config file comment
1 parent e20d964 commit b5ccb6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

invokeai/app/services/config/config_default.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@ def write_file(self, dest_path: Path, as_example: bool = False) -> None:
250250
)
251251

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

0 commit comments

Comments
 (0)