File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
from numpy .random import Generator , PCG64
7
7
8
+ from typing import List
8
9
from pineappl .bin import BinRemapper
9
10
from pineappl .boc import Channel , Kinematics , Scales , Order
10
11
from pineappl .convolutions import Conv , ConvType
@@ -227,7 +228,7 @@ def test_delete_orders(
227
228
self ,
228
229
download_objects ,
229
230
gridname : str = "GRID_STAR_WMWP_510GEV_WP-AL-POL.pineappl.lz4" ,
230
- order_indices : list [int ] = [1 ],
231
+ order_indices : List [int ] = [1 ],
231
232
):
232
233
grid = download_objects (f"{ gridname } " )
233
234
g = Grid .read (grid )
@@ -240,7 +241,7 @@ def test_delete_channels(
240
241
self ,
241
242
download_objects ,
242
243
gridname : str = "GRID_STAR_WMWP_510GEV_WP-AL-POL.pineappl.lz4" ,
243
- channel_indices : list [int ] = [1 , 4 , 5 ],
244
+ channel_indices : List [int ] = [1 , 4 , 5 ],
244
245
):
245
246
grid = download_objects (f"{ gridname } " )
246
247
g = Grid .read (grid )
You can’t perform that action at this time.
0 commit comments