Skip to content

Commit

Permalink
Fixed a few __all__ values.
Browse files Browse the repository at this point in the history
Added a few missing forwards.
  • Loading branch information
satoon101 committed Oct 27, 2015
1 parent 92e7ffc commit 9b52d71
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion addons/source-python/packages/source-python/autodoc.py
Expand Up @@ -11,7 +11,9 @@
# =============================================================================
# >> ALL DECLARATION
# =============================================================================
__all__ = ('SphinxProject', 'SphinxError')
__all__ = ('SphinxError',
'SphinxProject',
)


# =============================================================================
Expand Down
10 changes: 6 additions & 4 deletions addons/source-python/packages/source-python/engines/server.py
Expand Up @@ -7,21 +7,23 @@
# =============================================================================
# Source.Python Imports
# Engines
from _engines import engine_server
from _engines import server_game_dll
from _engines import ConnectionlessPacketHandler
from _engines import QueryCvarStatus
from _engines import Server
from _engines import engine_server
from _engines import server_game_dll
# Globals
from _globals import global_vars
from _globals import MapLoadType
from _globals import global_vars
# Memory
from memory.manager import manager


# =============================================================================
# >> ALL DECLARATION
# =============================================================================
__all__ = ('MapLoadType',
__all__ = ('ConnectionlessPacketHandler',
'MapLoadType',
'QueryCvarStatus',
'Server',
'engine_server',
Expand Down
Expand Up @@ -28,7 +28,6 @@
# =============================================================================
# Source.Python Imports
# Engines
from _engines import engine_sound
from _engines import Channels
from _engines import VOL_NORM
from _engines import ATTN_NONE
Expand All @@ -44,6 +43,7 @@
from _engines import PITCH_HIGH
from _engines import SOUND_FROM_LOCAL_PLAYER
from _engines import SOUND_FROM_WORLD
from _engines import engine_sound


# =============================================================================
Expand Down
6 changes: 5 additions & 1 deletion addons/source-python/packages/source-python/keyvalues.py
Expand Up @@ -7,11 +7,15 @@
# =============================================================================
# Source.Python Imports
# KeyValues
from _keyvalues import KeyValueType
from _keyvalues import KeyValues
from _keyvalues import KeyValuesIter


# =============================================================================
# >> ALL DECLARATION
# =============================================================================
__all__ = ('KeyValues',
__all__ = ('KeyValueType',
'KeyValues',
'KeyValuesIter',
)
2 changes: 1 addition & 1 deletion addons/source-python/packages/source-python/paths.py
Expand Up @@ -16,8 +16,8 @@
__all__ = ('BASE_PATH',
'CFG_PATH',
'CUSTOM_DATA_PATH',
'CUSTOM_PACKAGES_PATH',
'CUSTOM_PACKAGES_DOCS_PATH',
'CUSTOM_PACKAGES_PATH',
'DOCS_PATH',
'EVENT_PATH',
'GAME_PATH',
Expand Down

0 comments on commit 9b52d71

Please sign in to comment.