Skip to content

Commit

Permalink
black.
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Mar 29, 2024
1 parent 0bb44e3 commit e660a34
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/fmri/operators/proximity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Proximity Operators."""

from modopt.opt.linear import Identity
from modopt.opt.proximity import SparseThreshold
from modopt.opt.gradient import GradBasic
Expand Down
1 change: 1 addition & 0 deletions src/fmri/operators/svt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Singular Value Threshold operator."""

import logging
from functools import wraps
import gc
Expand Down
1 change: 1 addition & 0 deletions src/fmri/operators/time_op.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Operator applied voxel wise on the timeserie data."""

import numpy as np
import scipy as sp
import pywt
Expand Down
1 change: 1 addition & 0 deletions src/fmri/operators/utils/proxtv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Proximity Operator for Total Variation in 1D."""

import numpy as np

import numba as nb
Expand Down
1 change: 1 addition & 0 deletions src/fmri/operators/utils/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities for fMRI Operators."""

import numpy as np
from modopt.opt.gradient import GradBasic

Expand Down
1 change: 1 addition & 0 deletions src/fmri/operators/wavelet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Wavelet operator, build around PyWavelet."""

import warnings
from modopt.opt.linear import LinearParent
import pywt
Expand Down
1 change: 1 addition & 0 deletions src/fmri/reconstructors/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
fmri.reconstructors.frame_base
fmri.reconstructors.full
"""

import warnings

from modopt.opt.linear import Identity
Expand Down

0 comments on commit e660a34

Please sign in to comment.