Skip to content

Commit

Permalink
add missing type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
dhosterman committed Dec 8, 2023
1 parent 0acfa07 commit bd8c471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coffee/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def add(self, test, sut, test_sut_scores):
self.data[(test.__class__.__name__, sut)].append(test_sut_scores)

def for_sut(self, desired_sut) -> dict:
result = defaultdict(dict)
result: defaultdict = defaultdict(dict)
for test, sut in self.data:
if sut == desired_sut:
for entry in self.data[(test, sut)]:
Expand Down

0 comments on commit bd8c471

Please sign in to comment.