mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-06-28 03:06:14 +02:00
Fixed mypy issue.
This commit is contained in:
parent
220501adbc
commit
5c94a790bc
3 changed files with 12 additions and 13 deletions
|
@ -174,9 +174,8 @@ class TestGenerators(unittest.TestCase):
|
|||
test_file_reshaped = test_file.reshape(
|
||||
int(test_file.shape[0]), int(test_file.shape[1])
|
||||
)
|
||||
self.assertIsNone(
|
||||
np.testing.assert_allclose(corners, test_file_reshaped, rtol=1e-0, atol=0)
|
||||
)
|
||||
res = np.testing.assert_allclose(corners, test_file_reshaped, rtol=1e-0, atol=0) # type: ignore
|
||||
self.assertIsNone(res)
|
||||
|
||||
@staticmethod
|
||||
def shi_tomashi_reconfigure(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue