Skip to content

Commit

Permalink
Remove split_pixels default value from convenience classes
Browse files Browse the repository at this point in the history
  • Loading branch information
psomhorst committed Oct 10, 2023
1 parent 28dbe77 commit 1045834
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions eitprocessing/roi_selection/gridselection.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ class VentralAndDorsal(GridSelection):

v_split: Literal[2] = field(default=2, init=False)
h_split: Literal[1] = field(default=1, init=False)
split_pixels: bool = False


@dataclass
Expand All @@ -335,7 +334,6 @@ class RightAndLeft(GridSelection):

v_split: Literal[1] = field(default=1, init=False)
h_split: Literal[2] = field(default=2, init=False)
split_pixels: bool = False


@dataclass
Expand All @@ -344,7 +342,6 @@ class FourLayers(GridSelection):

v_split: Literal[4] = field(default=4, init=False)
h_split: Literal[1] = field(default=1, init=False)
split_pixels: bool = False


@dataclass
Expand All @@ -353,4 +350,3 @@ class Quadrants(GridSelection):

v_split: Literal[2] = field(default=2, init=False)
h_split: Literal[2] = field(default=2, init=False)
split_pixels: bool = False

0 comments on commit 1045834

Please sign in to comment.