Skip to content

Commit da5afbd

Browse files
committed
ignore specific too long lines
1 parent 326053b commit da5afbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -781,11 +781,11 @@ def get_from_matchday(matchday):
781781

782782
@staticmethod
783783
def _name_from_matchday(matchday):
784-
if Constants.Quarters.FOURTH_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.FIRST_QUARTER_LEVEL_UP_DAY:
784+
if Constants.Quarters.FOURTH_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.FIRST_QUARTER_LEVEL_UP_DAY: # pylint: disable=line-too-long
785785
return 'awp_boundaries_' + str(matchday.season.number) + '_0'
786-
elif Constants.Quarters.FIRST_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.SECOND_QUARTER_LEVEL_UP_DAY:
786+
elif Constants.Quarters.FIRST_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.SECOND_QUARTER_LEVEL_UP_DAY: # pylint: disable=line-too-long
787787
return 'awp_boundaries_' + str(matchday.season.number) + '_1'
788-
elif Constants.Quarters.SECOND_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.THIRD_QUARTER_LEVEL_UP_DAY:
788+
elif Constants.Quarters.SECOND_QUARTER_LEVEL_UP_DAY <= matchday.number < Constants.Quarters.THIRD_QUARTER_LEVEL_UP_DAY: # pylint: disable=line-too-long
789789
return 'awp_boundaries_' + str(matchday.season.number) + '_2'
790790
else:
791791
return 'awp_boundaries_' + str(matchday.season.number) + '_3'

0 commit comments

Comments
 (0)