feat: revert disabling persistent style sorting, code cleanup

This commit is contained in:
Manuel Schmid 2024-07-17 11:59:01 +02:00
parent 033cb90e6e
commit 97a8475a62
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
2 changed files with 0 additions and 3 deletions

View File

@ -9,7 +9,6 @@ from PIL import Image
import fooocus_version
import modules.config
import modules.sdxl_styles
from modules import hash_cache
from modules.flags import MetadataScheme, Performance, Steps
from modules.flags import SAMPLERS, CIVITAI_NO_KARRAS
from modules.hash_cache import sha256_from_cache

View File

@ -37,7 +37,6 @@ def sort_styles(selected):
global all_styles
unselected = [y for y in all_styles if y not in selected]
sorted_styles = selected + unselected
"""
try:
with open('sorted_styles.json', 'wt', encoding='utf-8') as fp:
json.dump(sorted_styles, fp, indent=4)
@ -45,7 +44,6 @@ def sort_styles(selected):
print('Write style sorting failed.')
print(e)
all_styles = sorted_styles
"""
return gr.CheckboxGroup.update(choices=sorted_styles)