Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions yt/geometry/geometry_handler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import abc
import os
import weakref
from typing import ClassVar

import numpy as np

Expand All @@ -21,8 +22,7 @@
class Index(ParallelAnalysisInterface, abc.ABC):
"""The base index class"""

_unsupported_objects: tuple[str, ...] = ()
_index_properties: tuple[str, ...] = ()
_unsupported_objects: ClassVar[tuple[str, ...]] = ()

def __init__(self, ds, dataset_type):
ParallelAnalysisInterface.__init__(self)
Expand Down
7 changes: 0 additions & 7 deletions yt/geometry/grid_geometry_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,6 @@ class GridIndex(Index, abc.ABC):

float_type = "float64"
_preload_implemented = False
_index_properties = (
"grid_left_edge",
"grid_right_edge",
"grid_levels",
"grid_particle_count",
"grid_dimensions",
)

def _setup_geometry(self):
mylog.debug("Counting grids.")
Expand Down
Loading