Skip to content

Commit 1e042bd

Browse files
committed
Standards updates.
1 parent fab9012 commit 1e042bd

File tree

7 files changed

+14
-17
lines changed

7 files changed

+14
-17
lines changed

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ignore=
77
# Definitions of codes disabled
88
# For a list of error codes, see:
99
# http://pylint-messages.wikidot.com/all-codes
10-
disable=C0330, C0411, E0611, E1101, F0401, R0902, R0903, R0904, R0912, R0913, R0914, W0212, W0702
10+
disable=C0330, C0411, C0413, E0611, E1101, F0401, R0902, R0903, R0904, R0912, R0913, R0914, W0212, W0702
1111

1212

1313
[BASIC]

addons/source-python/packages/source-python/core/dumps.py

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
# Entities
1717
from entities import ServerClassGenerator
1818
from entities.datamaps import FieldType
19-
from entities.entity import BaseEntity
2019
from entities.factories import factory_dictionary
2120
from entities.props import SendPropType
2221
# Filters

addons/source-python/packages/source-python/effects/hooks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def _callback(stack_data, *args):
5959
if temp_entity.name == self.name:
6060

6161
# Call the registered callback...
62-
return callback(temp_entity,
63-
make_object(RecipientFilter, stack_data[1]))
62+
return callback(temp_entity, make_object(
63+
RecipientFilter, stack_data[1]))
6464

6565
# Store the callback...
6666
self._callback = _callback

addons/source-python/packages/source-python/hooks/base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ def function(*args, **kwargs):
3333

3434
# Raise an exception
3535
raise ValueError(
36-
'Callback {0} is not callable'.format(callback))
36+
'Callback {0} is not callable.'.format(callback))
3737

3838
# Is the given callback already registered?
3939
if callback in self:
4040

4141
# Raise an exception
4242
raise ValueError(
43-
'Callback {0} is already registered to {0}'.format(
43+
'Callback {0} is already registered to {1}.'.format(
4444
callback, self.class_name))
4545

4646
# Add the callback to the list
@@ -63,7 +63,7 @@ def function(*args, **kwargs):
6363

6464
# Raise an exception
6565
raise ValueError(
66-
'Callback {0} is not registered to {1}'.format(
66+
'Callback {0} is not registered to {1}.'.format(
6767
callback, self.class_name))
6868

6969
# Remove the callback from the list

addons/source-python/packages/source-python/messages/base.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,14 @@ def _get_translated_kwargs(self, language, tokens):
111111
"""Return translated and tokenized arguments."""
112112
translated_kwargs = AttrDict()
113113
for key in self.translatable_fields:
114-
translated_kwargs[key] = self._translate(self[key], language, tokens)
114+
translated_kwargs[key] = self._translate(
115+
self[key], language, tokens)
115116

116117
return translated_kwargs
117118

118119
@staticmethod
119120
def _translate(value, language, tokens):
120-
"""Translate the given value if it's a :class:`TranslationStrings`
121-
object.
122-
"""
121+
"""Translate the value if it's a :class:`TranslationStrings` object."""
123122
if isinstance(value, TranslationStrings):
124123
return value.get_string(language, **tokens)
125124

addons/source-python/packages/source-python/players/games/csgo.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ def _set_assists(self, value):
5454
self.increment_assists_count(value - self.assists)
5555

5656
assists = property(
57-
_get_assists, _set_assists, doc="""The number of assists a player has.""")
57+
_get_assists, _set_assists,
58+
doc="""The number of assists a player has.""")

addons/source-python/packages/source-python/players/weapons/__init__.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,8 @@ def weapon_indexes(
348348
# Was a weapon type given and the
349349
# current weapon is not of that type?
350350
if not (is_filters is None and not_filters is None):
351-
if weapon_class not in map(lambda value: value.name,
351+
if weapon_class not in map(
352+
lambda value: value.name,
352353
WeaponClassIter(is_filters, not_filters)):
353354

354355
# Do not yield this index
@@ -387,10 +388,7 @@ def set_weapon_color(self, color):
387388
def _find_weapon_prop_length(table):
388389
"""Loop through a prop table to find the myweapons property length."""
389390
# Loop through the props in the table
390-
for offset in range(len(table)):
391-
392-
# Get the prop
393-
item = table[offset]
391+
for offset, item in enumerate(table):
394392

395393
# Is this the m_hMyWeapons prop?
396394
if item.name == weapon_manager.myweapons[:~0]:

0 commit comments

Comments
 (0)