Skip to content

Commit 606e8c9

Browse files
committed
Removed duplicate '__all__' values. The only remaining duplicates are the functions in entities.helpers that are also a part of players.helpers.
1 parent ea05210 commit 606e8c9

File tree

9 files changed

+0
-57
lines changed

9 files changed

+0
-57
lines changed

Diff for: addons/source-python/packages/source-python/commands/client/command.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.client.manager import client_command_manager
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('ClientCommand',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/client/filter.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.client.manager import client_command_manager
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('ClientCommandFilter',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/client/manager.py

-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@
1313
from commands.player import _PlayerCommandManager
1414

1515

16-
# =============================================================================
17-
# >> ALL DECLARATION
18-
# =============================================================================
19-
__all__ = ('client_command_manager',
20-
)
21-
22-
2316
# =============================================================================
2417
# >> CLASSES
2518
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/say/command.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.say.manager import say_command_manager
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('SayCommand',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/say/filter.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.say.manager import say_command_manager
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('SayFilter',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/say/manager.py

-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@
1313
from commands.say import unregister_say_filter
1414

1515

16-
# =============================================================================
17-
# >> ALL DECLARATION
18-
# =============================================================================
19-
__all__ = ('say_command_manager',
20-
)
21-
22-
2316
# =============================================================================
2417
# >> CLASSES
2518
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/server/command.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.server.manager import server_command_manager
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('ServerCommand',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/commands/server/manager.py

-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
from commands.server import get_server_command
1212

1313

14-
# =============================================================================
15-
# >> ALL DECLARATION
16-
# =============================================================================
17-
__all__ = ('server_command_manager',
18-
)
19-
20-
2114
# =============================================================================
2215
# >> CLASSES
2316
# =============================================================================

Diff for: addons/source-python/packages/source-python/memory/manager.py

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
# >> ALL DECLARATION
3434
# =============================================================================
3535
__all__ = ('CustomType',
36-
'Type',
3736
'TypeManager',
3837
'manager',
3938
)

0 commit comments

Comments
 (0)