Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cphyc committed Oct 6, 2023
1 parent 012b4c1 commit 9a0023c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yt/frontends/rockstar/data_structures.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import glob
import os
from functools import cached_property
from typing import Any, List, Optional
from typing import Any, Optional

import numpy as np

Expand All @@ -22,7 +22,7 @@ class RockstarBinaryFile(HaloCatalogFile):
_position_offset: int
_member_offset: int
_Npart: "np.ndarray[Any, np.dtype[np.int64]]"
_ids_halos: List[int]
_ids_halos: list[int]
_file_size: int

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

0 comments on commit 9a0023c

Please sign in to comment.