Skip to content

Commit 2de5d44

Browse files
committedNov 4, 2015
Minor updates.
1 parent 3ba7dc3 commit 2de5d44

File tree

2 files changed

+1
-5
lines changed
  • addons/source-python/packages/source-python/engines
  • src/core/modules/mathlib

2 files changed

+1
-5
lines changed
 

‎addons/source-python/packages/source-python/engines/sound.py

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# Python Imports
99
# Enum
1010
from enum import Enum
11-
from enum import IntEnum
1211

1312
# Source.Python Imports
1413
# Core

‎src/core/modules/mathlib/mathlib.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ class VectorExt
4545
}
4646

4747
static str __repr__(Vector* pVector)
48-
{
49-
return str("Vector" + str(tuple(pVector)));
50-
}
51-
// { return str(tuple(pVector)); }
48+
{ return str("Vector" + str(tuple(pVector))); }
5249
};
5350

5451

0 commit comments

Comments
 (0)
Please sign in to comment.