[mypy] Added/fixed type annotations for "rotate_matrix.py" & "test_matrix_operation.py" (#4221)

* [mypy] Added/fixed type annotations for "rotate_matrix.py"

* [mypy] Added/fixed type annotations for "test_matrix_operation.py"
This commit is contained in:
algobytewise
2021-02-26 19:00:35 +05:30
committed by GitHub
parent 67b33a295b
commit 4c76e3cba0
2 changed files with 11 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ import logging
import sys
import numpy as np
import pytest
import pytest # type: ignore
# Custom/local libraries
from matrix import matrix_operation as matop