Skip to content

Commit

Permalink
Enable Flake8 E241
Browse files Browse the repository at this point in the history
The check looks for extra spaces in expressions.
  • Loading branch information
jbytheway committed Sep 22, 2020
1 parent 50c06fb commit 7214f3f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ ignore =
# The following errors were present when starting to use flake8; they need
# to be triaged to determine which we should fix and which we should leave
# permanently ignored
E241,
E261,
E262,
E265,
Expand Down
2 changes: 1 addition & 1 deletion build-data/osx/dmgsettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def icon_from_app(app_path):

# Where to put the icons
icon_locations = {
appname: (240, 400),
appname: (240, 400),
'Applications': (430, 400)
}

Expand Down
2 changes: 1 addition & 1 deletion tools/json_tools/recipe_activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

args = argparse.ArgumentParser()
args.add_argument("dir", action="store", help="specify json directory")
args.add_argument("id", action="store", help="id of recipe to adjust")
args.add_argument("id", action="store", help="id of recipe to adjust")
args.add_argument("level", action="store", help="what activity level to shift it to")
args_dict = vars(args.parse_args())

Expand Down

0 comments on commit 7214f3f

Please sign in to comment.