Skip to content

Commit

Permalink
STY: Apply ruff/Pylint rule PLR0402
Browse files Browse the repository at this point in the history
PLR0402 Use `from ... import ..` in lieu of alias
  • Loading branch information
DimitriPapadopoulos committed Dec 21, 2024
1 parent d6d726e commit 4354e31
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions niworkflows/viz/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@
#
"""Plotting tools shared across MRIQC and fMRIPrep."""

import matplotlib.cm as cm
import matplotlib.pyplot as plt
import nibabel as nb
import numpy as np
import pandas as pd
from matplotlib import colormaps
from matplotlib import cm, colormaps
from matplotlib import gridspec as mgs
from matplotlib.colorbar import ColorbarBase
from matplotlib.colors import Normalize
Expand Down

0 comments on commit 4354e31

Please sign in to comment.