File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments