Skip to content

Commit

Permalink
Extend entrypoint syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bentaculum committed Jun 20, 2024
1 parent 4ec19dc commit 97ecefc
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions trackastra/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

import torch

from .model import Trackastra
from .tracking.utils import graph_to_ctc, graph_to_edge_table
from .utils import str2path
from trackastra.model import Trackastra
from trackastra.tracking.utils import graph_to_ctc, graph_to_edge_table
from trackastra.utils import str2path


def cli():
Expand Down Expand Up @@ -110,3 +110,7 @@ def _track_from_disk(args):
graph=track_graph,
outpath=outpath,
)


if __name__ == "__main__":
cli()

0 comments on commit 97ecefc

Please sign in to comment.