Skip to content

Commit

Permalink
remove more quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Nov 28, 2023
1 parent dc9db8a commit af482ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/traccuracy/matchers/_ctc.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import TYPE_CHECKING

import networkx as nx
Expand All @@ -24,7 +26,7 @@ class CTCMatcher(Matcher):
for complete details.
"""

def _compute_mapping(self, gt_graph: "TrackingGraph", pred_graph: "TrackingGraph"):
def _compute_mapping(self, gt_graph: TrackingGraph, pred_graph: TrackingGraph):
"""Run ctc matching
Args:
Expand Down
4 changes: 3 additions & 1 deletion src/traccuracy/matchers/_iou.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import numpy as np
from tqdm import tqdm

Expand Down Expand Up @@ -110,7 +112,7 @@ class IOUMatcher(Matcher):
def __init__(self, iou_threshold=0.6):
self.iou_threshold = iou_threshold

def _compute_mapping(self, gt_graph: "TrackingGraph", pred_graph: "TrackingGraph"):
def _compute_mapping(self, gt_graph: TrackingGraph, pred_graph: TrackingGraph):
"""Computes IOU mapping for a set of grpahs
Args:
Expand Down

0 comments on commit af482ab

Please sign in to comment.