18 lines
386 B
Python
18 lines
386 B
Python
"""Compatibility wrapper for the medial tire cut labelling script."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
import sys
|
|
|
|
PAPER_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
LIB_DIR = os.path.join(PAPER_DIR, "lib")
|
|
if LIB_DIR not in sys.path:
|
|
sys.path.insert(0, LIB_DIR)
|
|
|
|
from medial_tire_cut_labelling import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|