Skip to content

Commit

Permalink
List -> list
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 committed Sep 21, 2023
1 parent c835547 commit 8e3324b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spikeinterface/extractors/phykilosortextractors.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import Optional, List
from typing import Optional
from pathlib import Path

import numpy as np
Expand Down Expand Up @@ -37,7 +37,7 @@ class BasePhyKilosortSortingExtractor(BaseSorting):
def __init__(
self,
folder_path: Path | str,
exclude_cluster_groups: Optional[List[str] | str] = None,
exclude_cluster_groups: Optional[list[str] | str] = None,
keep_good_only: bool = False,
remove_empty_units: bool = False,
load_all_cluster_properties: bool = True,
Expand Down Expand Up @@ -219,7 +219,7 @@ class PhySortingExtractor(BasePhyKilosortSortingExtractor):
def __init__(
self,
folder_path: Path | str,
exclude_cluster_groups: Optional[List[str] | str] = None,
exclude_cluster_groups: Optional[list[str] | str] = None,
load_all_cluster_properties: bool = True,
):
BasePhyKilosortSortingExtractor.__init__(
Expand Down

0 comments on commit 8e3324b

Please sign in to comment.