We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4066d commit ca948c6Copy full SHA for ca948c6
.gitignore
@@ -20,3 +20,4 @@ test_waves/
20
reconstructed/
21
.python-version
22
ruff.log
23
+/configs/inuse/
real-time-gui.py
@@ -317,6 +317,7 @@ def __init__(self) -> None:
317
318
def load(self):
319
try:
320
+ os.makedirs("configs/inuse", exist_ok=True)
321
if not os.path.exists("configs/inuse/config.json"):
322
shutil.copy("configs/config.json", "configs/inuse/config.json")
323
with open("configs/inuse/config.json", "r") as j:
0 commit comments