Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ st.markdown("### Running `python3 -m powers`...")
|
|
| 21 |
with st.spinner("Launching bot..."):
|
| 22 |
try:
|
| 23 |
result = subprocess.run(
|
| 24 |
-
[sys.executable, "-m", "
|
| 25 |
stdout=subprocess.PIPE,
|
| 26 |
stderr=subprocess.PIPE,
|
| 27 |
text=True
|
|
|
|
| 21 |
with st.spinner("Launching bot..."):
|
| 22 |
try:
|
| 23 |
result = subprocess.run(
|
| 24 |
+
[sys.executable, "-m", "Powers"], # Running python3 -m powers
|
| 25 |
stdout=subprocess.PIPE,
|
| 26 |
stderr=subprocess.PIPE,
|
| 27 |
text=True
|