Skip to content

Commit 0fce073

Browse files
committed
Fix linting
1 parent 5e70326 commit 0fce073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yt/frontends/rockstar/data_structures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import glob
22
import os
33
from functools import cached_property
4-
from typing import Any, List, Optional
4+
from typing import Any, Optional
55

66
import numpy as np
77

@@ -22,7 +22,7 @@ class RockstarBinaryFile(HaloCatalogFile):
2222
_position_offset: int
2323
_member_offset: int
2424
_Npart: "np.ndarray[Any, np.dtype[np.int64]]"
25-
_ids_halos: List[int]
25+
_ids_halos: list[int]
2626
_file_size: int
2727

2828
def __init__(self, ds, io, filename, file_id, range):

0 commit comments

Comments
 (0)