Skip to content

Commit 0995f46

Browse files
committed
undo change to import path
1 parent 0f7b56c commit 0995f46

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/py/common_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import pytest
1616
import stim
1717

18-
import tesseract_decoder
18+
from src import tesseract_decoder
1919

2020
def get_set_bits(n):
2121
"""

src/py/simplex_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import pytest
1717
import stim
1818

19-
import tesseract_decoder
19+
from src import tesseract_decoder
2020

2121
_DETECTOR_ERROR_MODEL = stim.DetectorErrorModel(
2222
"""

src/py/tesseract_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import pytest
1717
import stim
1818

19-
import tesseract_decoder
19+
from src import tesseract_decoder
2020

2121
_DETECTOR_ERROR_MODEL = stim.DetectorErrorModel(
2222
"""

src/py/utils_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import pytest
1717
import stim
1818

19-
import tesseract_decoder
19+
from src import tesseract_decoder
2020

2121

2222
_DETECTOR_ERROR_MODEL = stim.DetectorErrorModel(

0 commit comments

Comments
 (0)