Skip to content

Commit

Permalink
Spacing updates for flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Aug 12, 2023
1 parent 13a29b3 commit fb25046
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pysollib/games/beleagueredcastle.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
UD_SS_RowStack, \
WasteStack, \
WasteTalonStack
from pysollib.util import ACE, ANY_RANK, KING, NO_RANK, QUEEN, RANKS,\
from pysollib.util import ACE, ANY_RANK, KING, NO_RANK, QUEEN, RANKS, \
UNLIMITED_ACCEPTS, UNLIMITED_MOVES


Expand Down
2 changes: 1 addition & 1 deletion pysollib/games/canfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ def createGame(self):
for i in range(4):
s.foundations.append(self.Foundation_Class(x, y, self, suit=i))
x += lay.XS
x0, y0, w = lay.XM, lay.YM+lay.YS+2*lay.TEXT_HEIGHT,\
x0, y0, w = lay.XM, lay.YM+lay.YS+2*lay.TEXT_HEIGHT, \
lay.XS+2*lay.XOFFSET
for i, j in ((0, 0), (0, 1), (1, 0), (1, 1)):
x, y = x0+i*w, y0+j*lay.YS
Expand Down
2 changes: 1 addition & 1 deletion pysollib/games/curdsandwhey.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
WasteTalonStack, \
isRankSequence, \
isSameSuitSequence
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, BLACK, KING, RED,\
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, BLACK, KING, RED, \
UNLIMITED_ACCEPTS, UNLIMITED_MOVES

# ************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions pysollib/games/fortythieves.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
UD_AC_RowStack, \
WasteStack, \
WasteTalonStack
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, CLUB, DIAMOND,\
HEART, JACK, KING, NO_RANK, SPADE, UNLIMITED_MOVES,\
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, CLUB, DIAMOND, \
HEART, JACK, KING, NO_RANK, SPADE, UNLIMITED_MOVES, \
UNLIMITED_REDEALS


Expand Down
5 changes: 2 additions & 3 deletions pysollib/games/golf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@
WasteStack, \
WasteTalonStack, \
isSameSuitSequence
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, DIAMOND, KING, NO_RANK,\
RANKS, SUITS, \
UNLIMITED_REDEALS
from pysollib.util import ACE, ANY_RANK, ANY_SUIT, DIAMOND, KING, NO_RANK, \
RANKS, SUITS, UNLIMITED_REDEALS


class Golf_Hint(AbstractHint):
Expand Down
2 changes: 1 addition & 1 deletion pysollib/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import os

from pysollib.mfxutil import Image, ImageTk, USE_PIL, print_err
from pysollib.pysoltk import copyImage, createBottom, createImage,\
from pysollib.pysoltk import copyImage, createBottom, createImage, \
createImagePIL, loadImage
from pysollib.pysoltk import shadowImage
from pysollib.resource import CSI
Expand Down
2 changes: 1 addition & 1 deletion pysollib/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import configobj

import pysollib.settings
from pysollib.mfxutil import USE_PIL,\
from pysollib.mfxutil import USE_PIL, \
get_default_resampling, print_err
from pysollib.mygettext import _
from pysollib.mygettext import myGettext
Expand Down

0 comments on commit fb25046

Please sign in to comment.