Skip to content

Commit d8769e7

Browse files
authored
♻️ Fixed a typo in filename (#3)
1 parent 700451b commit d8769e7

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

matops/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Matrix Operations"""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.1.1"
44

55
from .matrix import Matrix

matops/matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Tuple, Union
22

3-
from .excepions import NotSquareException, ValidationError
3+
from .exceptions import NotSquareException, ValidationError
44

55
Number = Union[int, float]
66

tests/test_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from matops.excepions import NotSquareException, ValidationError
2+
from matops.exceptions import NotSquareException, ValidationError
33
from matops.matrix import Matrix
44

55

0 commit comments

Comments
 (0)