We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd51676 commit 319cccbCopy full SHA for 319cccb
invokeai/app/services/config/config_default.py
@@ -536,11 +536,13 @@ def get_config() -> InvokeAIAppConfig:
536
537
# Compare directories recursively
538
comparison = filecmp.dircmp(configs_src, dest_path)
539
- need_copy = any([
540
- comparison.left_only, # Files exist only in source
541
- comparison.diff_files, # Files that differ
542
- comparison.common_funny # Files that couldn't be compared
543
- ])
+ need_copy = any(
+ [
+ comparison.left_only, # Files exist only in source
+ comparison.diff_files, # Files that differ
+ comparison.common_funny, # Files that couldn't be compared
544
+ ]
545
+ )
546
547
if need_copy:
548
# Get permissions from destination directory
0 commit comments