Skip to content

Commit

Permalink
Minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
edeno committed Jul 1, 2023
1 parent 916d556 commit 39fcf7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion loren_frank_data_processing/multiunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
import numpy as np
import pandas as pd
import xarray as xr
from scipy.io import loadmat

from loren_frank_data_processing.core import get_data_filename, logger
from loren_frank_data_processing.tetrodes import get_trial_time
from scipy.io import loadmat


def get_multiunit_dataframe(tetrode_key, animals):
Expand Down
3 changes: 1 addition & 2 deletions loren_frank_data_processing/saving.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@


def get_analysis_file_path(processed_data_dir, animal, day, epoch):
"""File path for analysis file.
"""
"""File path for analysis file."""
filename = "{animal}_{day:02d}_{epoch:02d}.nc".format(
animal=animal, day=day, epoch=epoch
)
Expand Down
3 changes: 2 additions & 1 deletion loren_frank_data_processing/tetrodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

import numpy as np
import pandas as pd
from loren_frank_data_processing.core import logger, reconstruct_time
from scipy.io import loadmat

from loren_frank_data_processing.core import logger, reconstruct_time


def squeeze_matcell(x):
try:
Expand Down
1 change: 1 addition & 0 deletions loren_frank_data_processing/visualization.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import matplotlib.animation as animation
import matplotlib.pyplot as plt
import numpy as np

from loren_frank_data_processing.track_segment_classification import (
get_track_segments_from_graph,
plot_track,
Expand Down

0 comments on commit 39fcf7a

Please sign in to comment.