removed unneeded import

This commit is contained in:
weygoldt 2023-04-14 21:02:59 +02:00
parent c9fe3bd912
commit 4f3f2f071b
No known key found for this signature in database
2 changed files with 9 additions and 10 deletions

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
}

View File

@ -5,16 +5,6 @@ import matplotlib.gridspec as gr
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import numpy as np import numpy as np
from IPython import embed from IPython import embed
import matplotlib.pyplot as plt
import matplotlib.gridspec as gr
from scipy.signal import find_peaks
from thunderfish.powerspectrum import spectrogram, decibel
# from sklearn.preprocessing import normalize
from modules.filters import bandpass_filter, envelope, highpass_filter
from modules.filehandling import ConfLoader, LoadData, make_outputdir
from modules.plotstyle import PlotStyle
from modules.logger import makeLogger
from modules.datahandling import ( from modules.datahandling import (
flatten, flatten,
group_timestamps, group_timestamps,
@ -29,6 +19,9 @@ from modules.plotstyle import PlotStyle
from scipy.signal import find_peaks from scipy.signal import find_peaks
from thunderfish.powerspectrum import decibel, spectrogram from thunderfish.powerspectrum import decibel, spectrogram
# from sklearn.preprocessing import normalize
logger = makeLogger(__name__) logger = makeLogger(__name__)
ps = PlotStyle() ps = PlotStyle()