Skip to content

Commit c00881e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent eca4da5 commit c00881e

133 files changed

Lines changed: 5 additions & 156 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

WrightTools/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from .collection._collection import *
2323
from .data._data import *
2424

25-
2625
# --- rcparams ------------------------------------------------------------------------------------
2726

2827
artists.apply_rcparams("fast")

WrightTools/__version__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import pathlib
77

8-
98
# ---- define -------------------------------------------------------------------------------------
109

1110

WrightTools/__wt5_version__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import os
77

8-
98
# ---- define -------------------------------------------------------------------------------------
109

1110

WrightTools/_close.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
from . import _group as wt_group
77

8-
98
# --- define -------------------------------------------------------------------------------------
109

1110

WrightTools/_dataset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from . import kit as wt_kit
1414
from . import units as wt_units
1515

16-
1716
# --- class ---------------------------------------------------------------------------------------
1817

1918

WrightTools/_group.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from . import exceptions as wt_exceptions
2121
from . import __wt5_version__
2222

23-
2423
# --- define --------------------------------------------------------------------------------------
2524

2625

WrightTools/_open.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from . import _group as wt_group
1616
from numpy.lib.npyio import DataSource
1717

18-
1918
# --- define -------------------------------------------------------------------------------------
2019

2120

WrightTools/artists/_base.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from ..data import Data
1717
from ._colors import colormaps
1818

19-
2019
# --- define -------------------------------------------------------------------------------------
2120

2221

@@ -502,10 +501,8 @@ def scatter(self, *args, **kwargs):
502501
coords.append(axis)
503502

504503
if "c" in kwargs.keys():
505-
raise KeyError(
506-
"'c' kwarg not allowed when data object provided. \
507-
Use `cmap` instead to control colors."
508-
)
504+
raise KeyError("'c' kwarg not allowed when data object provided. \
505+
Use `cmap` instead to control colors.")
509506

510507
channel = kwargs.pop("channel", 0)
511508
channel_index = wt_kit.get_index(data.channel_names, channel)

WrightTools/artists/_colors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import matplotlib.colors as mplcolors
1313
import matplotlib.gridspec as grd
1414

15-
1615
# --- define -------------------------------------------------------------------------------------
1716

1817

WrightTools/artists/_helpers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from ._base import Figure, GridSpec
2525
from ._colors import colormaps
2626

27-
2827
# --- define --------------------------------------------------------------------------------------
2928

3029

0 commit comments

Comments
 (0)