Skip to content

Commit ebb231e

Browse files
committed
Satisfy isort linter.
1 parent a1e095d commit ebb231e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

netqasm/sdk/run/context.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
from abc import ABC, abstractmethod
66
from typing import Dict
77

8-
from netqasm.sdk.connection import BaseNetQASMConnection
98
from netqasm.sdk.classical_communication.socket import Socket
9+
from netqasm.sdk.connection import BaseNetQASMConnection
1010
from netqasm.sdk.epr_socket import EPRSocket
1111

12+
1213
class Context(ABC):
1314
def __init__(self):
1415
pass

netqasm/sdk/run/program.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
"""
44

55
from abc import ABC, abstractmethod
6-
from typing import Dict, Any
6+
from typing import Any, Dict
77

88
from netqasm.sdk.run import Context
99

10+
1011
class Program(ABC):
1112
def __init__(self):
1213
pass

0 commit comments

Comments
 (0)