File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,9 @@ class Component:
71
71
class_var_typing_list : ClassVar [tunable [List [int ]]] = tunable ([])
72
72
inst_typing_list : List [int ] = tunable ([])
73
73
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([])
74
+ generic_list = tunable [list [int ]]([])
75
+ class_var_list : ClassVar [tunable [list [int ]]] = tunable ([])
76
+ inst_list : list [int ] = tunable ([])
78
77
79
78
component = Component ()
80
79
setup_tunables (component , "test_type_hinted_sequences" )
@@ -88,9 +87,9 @@ class Component:
88
87
"generic_typing_list" ,
89
88
"class_var_typing_list" ,
90
89
"inst_typing_list" ,
91
- # "generic_list",
92
- # "class_var_list",
93
- # "inst_list",
90
+ "generic_list" ,
91
+ "class_var_list" ,
92
+ "inst_list" ,
94
93
]:
95
94
assert nt .getTopic (name ).getTypeString () == "int[]"
96
95
entry = nt .getEntry (name )
You can’t perform that action at this time.
0 commit comments