Skip to content

Commit c8bc746

Browse files
committed
fix: lint
1 parent cad50a1 commit c8bc746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/amplitude_experiment/exposure/exposure_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from amplitude import Amplitude, BaseEvent
2+
from typing import List
23
from .exposure import Exposure
3-
from .exposure import DAY_MILLIS
44
from .exposure_filter import ExposureFilter
55
from ..util import hash_code
66

77
FLAG_TYPE_MUTUAL_EXCLUSION_GROUP = "mutual-exclusion-group"
88

99

10-
def to_exposure_events(exposure: Exposure, ttl_millis: int) -> list[BaseEvent]:
10+
def to_exposure_events(exposure: Exposure, ttl_millis: int) -> List[BaseEvent]:
1111
"""
1212
Convert an Exposure to a list of Amplitude events (one per flag).
1313
"""

0 commit comments

Comments
 (0)