We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d980f commit c299f56Copy full SHA for c299f56
app.py
@@ -736,8 +736,8 @@ def main():
736
737
if not decoding_seed:
738
decoding_seed = None
739
- elif seed.isnumeric():
740
- decoding_seed = int(seed)
+ elif decoding_seed.isnumeric():
+ decoding_seed = int(decoding_seed)
741
else:
742
st.error("Seed must be numeric or empty.")
743
st.stop()
0 commit comments