Skip to content
Merged
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: 3 additions & 1 deletion brainrender/atlas.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Atlas subclass adding region and plane Actor support for scenes."""

from typing import Any

import numpy as np
import numpy.typing as npt
from brainglobe_atlasapi.bg_atlas import BrainGlobeAtlas
Expand Down Expand Up @@ -140,7 +142,7 @@ def get_plane(
sy: float | None = None,
color: str = "lightgray",
alpha: float = 0.25,
**kwargs: object,
**kwargs: Any,
) -> Actor:
"""
Returns a plane going through a point at pos, oriented
Expand Down
Loading