I'm using the autopep8 extension in sublime text 3 and it suggests to me that the following line looks like this:
self.buttons = [Button(self.fonts["alfa_slab_one_regular_40"], "JOGAR",
midtop=[self.screen_rect.centerx, 250 + 0 * 80])
for index, button in ["jogar torneio ranking \
opções".split()]]
So it's correct according to PEP8 or it should look like this:
self.buttons = [Button(self.fonts["alfa_slab_one_regular_40"], "JOGAR",
midtop=[self.screen_rect.centerx, 250 + 0 * 80])
for index, button in ["jogar torneio ranking \
opções".split()]]