File size: 262 Bytes
247775e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from main import QuantScaleSystem
import time

print("Instantiating System...")
start = time.time()
try:
    s = QuantScaleSystem()
    print(f"Instantiation complete in {time.time() - start:.2f}s")
except Exception as e:
    print(f"Instantiation failed: {e}")