Skip to content

Commit

Permalink
Merge branch 'main' into daily_email_notification
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Sep 28, 2023
2 parents d6a90a6 + 639a9fd commit 770fc0a
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from pathlib import Path
from typing import List, Literal, Optional, Union
from warnings import warn
from typing import Literal, Optional

import numpy as np
import scipy
Expand Down Expand Up @@ -421,7 +420,7 @@ def __init__(self, file_path: FilePathType, verbose: bool = True):
if "extracellular" in session_data.keys():
sampling_frequency = session_data["extracellular"].get("sr", None)

super().__init__(spikes_matfile_path=file_path, sampling_frequency=sampling_frequency, verbose=verbose)
super().__init__(file_path=file_path, sampling_frequency=sampling_frequency, verbose=verbose)
self.source_data = dict(file_path=file_path)
spikes_matfile_path = Path(file_path)

Expand Down

0 comments on commit 770fc0a

Please sign in to comment.