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:
71
71
class_var_typing_list : ClassVar [tunable [List [int ]]] = tunable ([])
72
72
inst_typing_list : List [int ] = tunable ([])
73
73
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([])
77
78
78
79
component = Component ()
79
80
setup_tunables (component , "test_type_hinted_sequences" )
@@ -87,9 +88,9 @@ class Component:
87
88
"generic_typing_list" ,
88
89
"class_var_typing_list" ,
89
90
"inst_typing_list" ,
90
- "generic_list" ,
91
- "class_var_list" ,
92
- "inst_list" ,
91
+ # "generic_list",
92
+ # "class_var_list",
93
+ # "inst_list",
93
94
]:
94
95
assert nt .getTopic (name ).getTypeString () == "int[]"
95
96
entry = nt .getEntry (name )
You can’t perform that action at this time.
0 commit comments