Skip to content

Commit

Permalink
♻️ Fixed a typo in filename (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarmadgulzar authored Sep 30, 2021
1 parent 700451b commit d8769e7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion matops/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Matrix Operations"""

__version__ = "0.1.0"
__version__ = "0.1.1"

from .matrix import Matrix
File renamed without changes.
2 changes: 1 addition & 1 deletion matops/matrix.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, Tuple, Union

from .excepions import NotSquareException, ValidationError
from .exceptions import NotSquareException, ValidationError

Number = Union[int, float]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_matrix.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from matops.excepions import NotSquareException, ValidationError
from matops.exceptions import NotSquareException, ValidationError
from matops.matrix import Matrix


Expand Down

0 comments on commit d8769e7

Please sign in to comment.