Skip to content

Commit

Permalink
Fixing typing issue in tapify test
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Jul 12, 2023
1 parent 80735dc commit e68e014
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_tapify.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dataclasses import dataclass
import io
import sys
from typing import List, Optional, Tuple, Any
from typing import Dict, List, Optional, Tuple, Any
import unittest
from unittest import TestCase

Expand Down Expand Up @@ -545,7 +545,7 @@ def concat(a: int, b: int = 2, **kwargs) -> str:
self.concat_function = concat

class Concat:
def __init__(self, a: int, b: int = 2, **kwargs: dict[str, str]):
def __init__(self, a: int, b: int = 2, **kwargs: Dict[str, str]):
"""Concatenate three numbers.
:param a: The first number.
Expand Down

0 comments on commit e68e014

Please sign in to comment.