Skip to content

Commit

Permalink
Update umatrix.py
Browse files Browse the repository at this point in the history
Somehow managed to bokeye the only argument's name. Fixed now.
  • Loading branch information
iyassou authored Feb 14, 2022
1 parent 5845867 commit c907e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umatrix.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = "1.1.3"

def eye(n):
def eye(order):
return matrix(*[[int(i == j) for j in range(order)] for i in range(order)])

def fill(x, order, num_cols=None):
Expand Down

0 comments on commit c907e04

Please sign in to comment.