Skip to content

Commit

Permalink
fix-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Oct 25, 2024
1 parent cdb04ed commit c4ae194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deepecho/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def fit(
if segment_size is not None and not isinstance(segment_size, int):
if sequence_index is None:
raise TypeError(
'`segment_size` must be of type `int` if ' 'no `sequence_index` is given.'
'`segment_size` must be of type `int` if no `sequence_index` is given.'
)
if data[sequence_index].dtype.kind != 'M':
raise TypeError(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dev = [
'watchdog>=1.0.1,<5',

# style check
'ruff>=0.3.2,<1',
'ruff>=0.3.2,<0.7.2',

# distribute on PyPI
'twine>=1.10.0,<4',
Expand Down

0 comments on commit c4ae194

Please sign in to comment.