aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshirase-0 <ultra.gamer.ebf@gmail.com>2022-10-02 00:57:29 +1000
committershirase-0 <ultra.gamer.ebf@gmail.com>2022-10-02 00:57:29 +1000
commit0e77ee24b0b651d6a564245243850e4fb9831e31 (patch)
tree3a804b213ba998c3f5140dbe705fa5e21510c12f
parent27fbf3de4adf6ba8dfa43876db3599bb8159ef44 (diff)
Removed unnecessary library call and added some comments
-rw-r--r--scripts/prompts_from_file.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/prompts_from_file.py b/scripts/prompts_from_file.py
index 36e199b3..0a862a5b 100644
--- a/scripts/prompts_from_file.py
+++ b/scripts/prompts_from_file.py
@@ -2,7 +2,6 @@ import math
import os
import sys
import traceback
-from xml.etree.ElementTree import tostring
import modules.scripts as scripts
import gradio as gr
@@ -90,6 +89,8 @@ class Script(scripts.Script):
state.job = f"{loop_no + 1} out of {loop_count}"
# The following line may need revising to remove batch_size references
current_line = lines[loop_no*p.batch_size:(loop_no+1)*p.batch_size] * p.n_iter
+
+ # If the current line has no tags, parse the whole line as a prompt, else parse each tag
if(current_line[0][:2] != "--"):
p.prompt = current_line
else: