Skip to content

Commit 979241d

Browse files
committed
3.8 typing
1 parent 7adba8d commit 979241d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dedupe/variables/interaction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from __future__ import annotations
22

33
import itertools
4-
from typing import Mapping
4+
from typing import List, Mapping
55

66
from dedupe._typing import FieldVariable, InteractionVariable
77
from dedupe.variables.base import Variable
88

99

1010
class InteractionType(Variable):
1111
type = "Interaction"
12-
higher_vars: list[InteractionVariable]
12+
higher_vars: List[InteractionVariable]
1313

1414
def __init__(self, *args: str, **kwargs):
1515
self.interactions = list(args)

0 commit comments

Comments
 (0)