Skip to content

Commit c6c3ea8

Browse files
committed
[actions] Shorten long line below 79 characters for libtorrent
The purpose of this commit is to test the rebuild updated recipes behaviour with a long time consuming recipe
1 parent 643a7f7 commit c6c3ea8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pythonforandroid/recipes/libtorrent/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ def build_arch(self, arch):
7575
# Define build variables
7676
build_dir = self.get_build_dir(arch.arch)
7777
ctx_libs_dir = self.ctx.get_libs_dir(arch.arch)
78-
encryption = 'openssl' if 'openssl' in recipe.ctx.recipe_build_order else 'built-in'
78+
encryption = (
79+
'openssl'
80+
if 'openssl' in recipe.ctx.recipe_build_order
81+
else 'built-in'
82+
)
7983
build_args = [
8084
'-q',
8185
# '-a', # force build, useful to debug the build

0 commit comments

Comments
 (0)