Update app.py
Browse files
app.py
CHANGED
@@ -165,7 +165,7 @@ if reset:
|
|
165 |
row_count = st.session_state.get("row_count", 1)
|
166 |
|
167 |
# Create two columns: one for the target URL inputs, and one for the download buttons
|
168 |
-
col1, col2 = st.
|
169 |
|
170 |
for i in range(row_count):
|
171 |
target_url_key = f"target_url_{i}"
|
|
|
165 |
row_count = st.session_state.get("row_count", 1)
|
166 |
|
167 |
# Create two columns: one for the target URL inputs, and one for the download buttons
|
168 |
+
col1, col2 = st.columns(2)
|
169 |
|
170 |
for i in range(row_count):
|
171 |
target_url_key = f"target_url_{i}"
|