Skip to content

Commit 285c709

Browse files
committed
Disable PEP 585 test
1 parent ba0e8fd commit 285c709

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/test_magicbot_tunable.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,10 @@ class Component:
7171
class_var_typing_list: ClassVar[tunable[List[int]]] = tunable([])
7272
inst_typing_list: List[int] = tunable([])
7373

74-
generic_list = tunable[list[int]]([])
75-
class_var_list: ClassVar[tunable[list[int]]] = tunable([])
76-
inst_list: list[int] = tunable([])
74+
# TODO(davo): re-enable after py3.8 is dropped
75+
# generic_list = tunable[list[int]]([])
76+
# class_var_list: ClassVar[tunable[list[int]]] = tunable([])
77+
# inst_list: list[int] = tunable([])
7778

7879
component = Component()
7980
setup_tunables(component, "test_type_hinted_sequences")
@@ -87,9 +88,9 @@ class Component:
8788
"generic_typing_list",
8889
"class_var_typing_list",
8990
"inst_typing_list",
90-
"generic_list",
91-
"class_var_list",
92-
"inst_list",
91+
# "generic_list",
92+
# "class_var_list",
93+
# "inst_list",
9394
]:
9495
assert nt.getTopic(name).getTypeString() == "int[]"
9596
entry = nt.getEntry(name)

0 commit comments

Comments
 (0)