Skip to content

Commit f8278de

Browse files
committed
Remove load_tbt_data import from package namespace
1 parent 46c0fc8 commit f8278de

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

turn_by_turn/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Exposes TbtData, read_tbt and write_tbt directly in the package's namespace."""
2-
from .io import read_tbt, write_tbt, convert_to_tbt, load_tbt_data
2+
from .io import read_tbt, write_tbt, convert_to_tbt
33
from .structures import TbtData, TransverseData
44

55
__title__ = "turn_by_turn"
@@ -14,7 +14,6 @@
1414
write = write_tbt
1515
read = read_tbt
1616
convert = convert_to_tbt
17-
load = load_tbt_data
1817

1918
# Importing * is a bad practice and you should be punished for using it
2019
__all__ = []

0 commit comments

Comments
 (0)