Skip to content

Commit eadabc6

Browse files
WIP modify sys.path
1 parent e1c60d4 commit eadabc6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

python/example.py

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
"""Example of a full ChillDKG session"""
44

5+
import sys
6+
7+
sys.path.append("secp256k1proto/src")
8+
59
from typing import Tuple, List, Optional
610
import asyncio
711
import pprint

python/tests.py

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
"""Tests for ChillDKG reference implementation"""
44

5+
import sys
6+
7+
sys.path.append("secp256k1proto/src")
8+
59
from itertools import combinations
610
from random import randint
711
from typing import Tuple, List, Optional

0 commit comments

Comments
 (0)