We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc2772f commit 3f0e110Copy full SHA for 3f0e110
1 file changed
stormdb/process.py
@@ -47,7 +47,7 @@ def raw_filter(self, in_fname, out_fname, l_freq, h_freq, **kwargs):
47
48
script = ("from mne.io import read_raw_fif;"
49
"raw = read_raw_fif('{in_fname:s}', preload=True);"
50
- "raw.filter({l_freq:.1f}, {h_freq:.1f}{kwargs:});"
+ "raw.filter({l_freq}, {h_freq}{kwargs:});"
51
"raw.save('{out_fname:s}')")
52
filtargs = ', '.join("{!s}={!r}".format(key, val) for
53
(key, val) in kwargs.items())
0 commit comments