Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewJGaut committed Oct 10, 2023
1 parent 7dbe796 commit 8ce15c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codalab/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import multiprocessing
from functools import partial
import time
from typing import Dict, List
from collections import defaultdict
import json
import numpy as np
Expand Down Expand Up @@ -48,7 +49,7 @@ def __init__(self, target_store_name, change_db, delete) -> None:
) = (
self.skipped_delete_path_dne
) = self.path_exception_cnt = self.error_cnt = self.success_cnt = 0
self.times = defaultdict(list)
self.times: Dict[str, List[float]] = defaultdict(list)

def setUp(self):
self.codalab_manager = CodaLabManager()
Expand Down

0 comments on commit 8ce15c5

Please sign in to comment.