Skip to content

Commit 3390b95

Browse files
author
Robert Pfeiffer
committed
flake8 complicance
1 parent fb1c49a commit 3390b95

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pythonforandroid/bootstraps/common/build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def make_package(args):
360360
tar_dirs.append('webview_includes')
361361
if hasattr(args, "assets") and args.assets is not None:
362362
for asset in args.assets:
363-
asset_src, asset_dest=asset.split(":")
363+
asset_src, asset_dest = asset.split(":")
364364
if isfile(realpath(asset_src)):
365365
ensure_dir(dirname(join(assets_dir, asset_dest)))
366366
shutil.copy(realpath(asset_src), join(assets_dir, asset_dest))

pythonforandroid/toolchain.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -491,9 +491,10 @@ def add_parser(subparsers, *args, **kwargs):
491491
# However, it is also needed before the distribution is finally
492492
# assembled for locating the setup.py / other build systems, which
493493
# is why we also add it here:
494-
parser_apk.add_argument('--add-asset', dest='assets',
495-
action="append",
496-
help=('Put this in the assets folder'))
494+
parser_apk.add_argument(
495+
'--add-asset', dest='assets',
496+
action="append",
497+
help=('Put this in the assets folder'))
497498
parser_apk.add_argument(
498499
'--private', dest='private',
499500
help='the directory with the app source code files' +

0 commit comments

Comments
 (0)