We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1e095d commit ebb231eCopy full SHA for ebb231e
netqasm/sdk/run/context.py
@@ -5,10 +5,11 @@
5
from abc import ABC, abstractmethod
6
from typing import Dict
7
8
-from netqasm.sdk.connection import BaseNetQASMConnection
9
from netqasm.sdk.classical_communication.socket import Socket
+from netqasm.sdk.connection import BaseNetQASMConnection
10
from netqasm.sdk.epr_socket import EPRSocket
11
12
+
13
class Context(ABC):
14
def __init__(self):
15
pass
netqasm/sdk/run/program.py
@@ -3,10 +3,11 @@
3
"""
4
-from typing import Dict, Any
+from typing import Any, Dict
from netqasm.sdk.run import Context
class Program(ABC):
0 commit comments