We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba7dc3 commit 2de5d44Copy full SHA for 2de5d44
addons/source-python/packages/source-python/engines/sound.py
@@ -8,7 +8,6 @@
8
# Python Imports
9
# Enum
10
from enum import Enum
11
-from enum import IntEnum
12
13
# Source.Python Imports
14
# Core
src/core/modules/mathlib/mathlib.h
@@ -45,10 +45,7 @@ class VectorExt
45
}
46
47
static str __repr__(Vector* pVector)
48
- {
49
- return str("Vector" + str(tuple(pVector)));
50
- }
51
- // { return str(tuple(pVector)); }
+ { return str("Vector" + str(tuple(pVector))); }
52
};
53
54
0 commit comments