mirror of
https://github.com/onyx-and-iris/streamlabs-socketio-py
synced 2024-11-21 15:00:48 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
|
|
def ex_debug():
|
|
scriptpath = Path.cwd() / "examples" / "debug" / "."
|
|
subprocess.run([sys.executable, str(scriptpath)])
|