Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions python/tskit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
# SOFTWARE.

import _tskit
NULL = _tskit.NULL
MISSING_DATA = _tskit.MISSING_DATA
NODE_IS_SAMPLE = _tskit.NODE_IS_SAMPLE
FORWARD = _tskit.FORWARD
REVERSE = _tskit.REVERSE

Expand Down
4 changes: 2 additions & 2 deletions python/tskit/trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
import tskit.formats as formats
import tskit.util as util

from _tskit import NODE_IS_SAMPLE
from _tskit import NULL
from tskit import NODE_IS_SAMPLE
from tskit import NULL


CoalescenceRecord = collections.namedtuple(
Expand Down