Skip to content

Commit 6401034

Browse files
committed
fix lint.
1 parent 5de329c commit 6401034

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

tests/test_convolution_fwt.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,9 @@ def _compare_coeffs(
313313
314314
Returns:
315315
A list with bools from allclose.
316+
317+
Raises:
318+
TypeError: In case of a problem with the list structures.
316319
"""
317320
test_list: List[bool] = []
318321
for ptwtcs, pywtcs in zip(ptwt_res, pywt_res):

tests/test_cwt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Test the continuous transformation code."""
22

3-
from typing import Any, Union
3+
from typing import Any
44

55
import numpy as np
66
import pytest

tests/test_jit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Ensure pytorch's torch.jit.trace feature works properly."""
22

3-
from typing import Any, Dict, List, NamedTuple, Optional, Tuple, Union
3+
from typing import Dict, List, NamedTuple, Optional, Tuple, Union
44

55
import numpy as np
66
import pytest

0 commit comments

Comments
 (0)