From d73c9c1a9182092a5cb53c0c2def583fc6a5863f Mon Sep 17 00:00:00 2001 From: John Cote Date: Mon, 30 Dec 2019 02:12:15 -0500 Subject: [PATCH] movement: don't need int in ScalarTypes twice --- otp/movement/PyVec3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otp/movement/PyVec3.py b/otp/movement/PyVec3.py index 3701f9b..a31fd4f 100644 --- a/otp/movement/PyVec3.py +++ b/otp/movement/PyVec3.py @@ -4,7 +4,7 @@ import math class PyVec3: Epsilon = 0.0001 - ScalarTypes = (float, int, int) + ScalarTypes = (float, int) def __init__(self, *args): self.assign(*args)