Skip to content

Commit 9c44e0b

Browse files
committed
fix: magic number
1 parent 6e20686 commit 9c44e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import sys
44
import os.path
5-
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
6-
from source.json_generator import get_json
7-
from source.duplicates import list_duplicates
5+
sys.path.append(os.path.join(os.path.dirname(__file__), '../source'))
6+
from json_generator import get_json
7+
from duplicates import list_duplicates
88
import json
99
import re
1010
import unittest

0 commit comments

Comments
 (0)