Skip to content

Commit

Permalink
Fix typing issue in test_cli
Browse files Browse the repository at this point in the history
  • Loading branch information
mcqueary committed Dec 28, 2023
1 parent c4085bb commit 06c3f1c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import logging
import os
import random
from typing import Dict

import pytest
from click.testing import Result
Expand All @@ -18,8 +19,8 @@

@pytest.mark.usefixtures("api_mock", "faker")
class TestCli(Test):
memorials_by_url: dict[str, Memorial] = {}
memorials_by_id: dict[int, Memorial] = {}
memorials_by_url: Dict[str, Memorial] = {}
memorials_by_id: Dict[int, Memorial] = {}

@staticmethod
def cache(memorial: Memorial):
Expand Down

0 comments on commit 06c3f1c

Please sign in to comment.