File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -781,11 +781,11 @@ def get_from_matchday(matchday):
781
781
782
782
@staticmethod
783
783
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
785
785
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
787
787
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
789
789
return 'awp_boundaries_' + str (matchday .season .number ) + '_2'
790
790
else :
791
791
return 'awp_boundaries_' + str (matchday .season .number ) + '_3'
You can’t perform that action at this time.
0 commit comments