Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Oct 28, 2022
1 parent 2403f64 commit e3234a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmdx.py
Original file line number Diff line number Diff line change
Expand Up @@ -4612,7 +4612,7 @@ class Vector(om.MVector):
"""

def __mul__(self, value):
return Vector(super(Vector, self).__mul__(value))
return super(Vector, self).__mul__(value)

def __add__(self, value):
if isinstance(value, (int, float)):
Expand Down

0 comments on commit e3234a6

Please sign in to comment.