Skip to content

Commit 0326f88

Browse files
committed
Fix linter E127: continuation line over-indented for visual indent
1 parent 0a8d96a commit 0326f88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipes/python3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def add_flags(include_flags, link_flags):
7373
recipe = Recipe.get_recipe('libffi', self.ctx)
7474
include = ' -I' + ' -I'.join(recipe.get_include_dirs(arch))
7575
ldflag = ' -L' + join(recipe.get_build_dir(arch.arch),
76-
recipe.get_host(arch), '.libs') + ' -lffi'
76+
recipe.get_host(arch), '.libs') + ' -lffi'
7777
add_flags(include, ldflag)
7878
# libffi needs some extra configurations
7979
env['LIBFFI_CFLAGS'] = env.get('CFLAGS', '') + include

0 commit comments

Comments
 (0)