movement: don't need int in ScalarTypes twice

This commit is contained in:
John Cote 2019-12-30 02:12:15 -05:00
parent a79b2dff0b
commit d73c9c1a91

View file

@ -4,7 +4,7 @@ import math
class PyVec3: class PyVec3:
Epsilon = 0.0001 Epsilon = 0.0001
ScalarTypes = (float, int, int) ScalarTypes = (float, int)
def __init__(self, *args): def __init__(self, *args):
self.assign(*args) self.assign(*args)