Skip to content

Commit

Permalink
PEP8 double aggressive E225 ~ E228 and E231
Browse files Browse the repository at this point in the history
  • Loading branch information
openvix-bot committed Oct 9, 2023
1 parent 7081426 commit 26a734a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/python/Components/Converter/MovieInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MovieInfo(Converter):
MOVIE_REC_FILESIZE = 4 # filesize of recording
MOVIE_FULL_DESCRIPTION = 5 # combination of short and long description when available
MOVIE_NAME = 6 # recording name
FORMAT_STRING = 6 # it is formatted string based on parameter and with defined separator
FORMAT_STRING = 6 # it is formatted string based on parameter and with defined separator

KEYWORDS = {
# Arguments...
Expand Down
2 changes: 1 addition & 1 deletion lib/python/Components/Converter/ServiceName.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def getOrbitalPos(self, ref, info):
if tp_data is not None:
try:
position = tp_data["orbital_position"]
if position > 1800: # west
if position > 1800: # west
orbitalpos = "%.1f " % (float(3600 - position) / 10) + _("W")
else:
orbitalpos = "%.1f " % (float(position) / 10) + _("E")
Expand Down
2 changes: 1 addition & 1 deletion lib/python/skin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
menus = {} # Dictionary of images associated with menu entries.
menuicons = {} # Dictionary of icons associated with menu items.
parameters = {} # Dictionary of skin parameters used to modify code behavior.
stringparameters = {} # Dictionary that contains string type parameters for use in screens
stringparameters = {} # Dictionary that contains string type parameters for use in screens
setups = {} # Dictionary of images associated with setup menus.
switchPixmap = {} # Dictionary of switch images.
scrollbarStyle = None # When set, a dictionary of scrollbar styles
Expand Down

0 comments on commit 26a734a

Please sign in to comment.