@@ -104,10 +104,10 @@ def read_wildcard_file(file_path):
104
104
if os .path .isfile (file_path ):
105
105
read_wildcard_file (file_path )
106
106
107
- print ("Loaded Wildcards:" )
107
+ # print("Loaded Wildcards:")
108
108
for key , values in wildcard_dict .items ():
109
- print (f"{ key } : { values } " )
110
- return wildcard_dict
109
+ # print(f"{key}: {values}")
110
+ return wildcard_dict
111
111
112
112
def flatten_wildcard_dict (self , data , parent_key , wildcard_dict ):
113
113
"""Flatten nested dictionaries into wildcard_dict with composite keys and aggregate top-level values."""
@@ -331,9 +331,9 @@ def display_text(self, text, select=0, counter=-1, dynamic_prompt="", max_varian
331
331
# Parse dynamic variables if provided
332
332
dynamic_vars = {}
333
333
if dynamic_prompt :
334
- print (f"Processing dynamic prompt: { dynamic_prompt } " )
334
+ # print(f"Processing dynamic prompt: {dynamic_prompt}")
335
335
dynamic_vars = self .parse_dynamic_variables (dynamic_prompt )
336
- print (f"Parsed dynamic variables: { dynamic_vars } " )
336
+ # print(f"Parsed dynamic variables: {dynamic_vars}")
337
337
338
338
# Process text
339
339
output_prompts = []
@@ -354,7 +354,7 @@ def display_text(self, text, select=0, counter=-1, dynamic_prompt="", max_varian
354
354
print ("==================" )
355
355
print (f"Mode: { 'Wildcard' if wildcard_mode else 'Normal' } " )
356
356
print (f"Counter: { self ._execution_count } " )
357
- print (f"Dynamic vars: { dynamic_vars } " )
357
+ # print(f"Dynamic vars: {dynamic_vars}")
358
358
print (f"Variants generated: { count } " )
359
359
for i , p in enumerate (output_prompts ):
360
360
print (f"[{ i + 1 } /{ count } ] { p } " )
0 commit comments