Skip to content

Commit ac04b36

Browse files
committed
Add from __future__ import annotations to test
1 parent 14d23be commit ac04b36

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_statsutils_histogram.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from typing import TYPE_CHECKING
24
from boltons.statsutils import Stats
35

@@ -27,7 +29,7 @@
2729
+ list(range(20, 80))
2830
+ list(range(40, 60)))
2931

30-
EMPTY_DATA: "list[Never]" = []
32+
EMPTY_DATA: list[Never] = []
3133

3234
ALL_DATASETS = [EMPTY_DATA, LAYER_RANGE_DATA, SIMPLE_RANGE_DATA, NORM_DATA]
3335

0 commit comments

Comments
 (0)