Skip to content

Commit 032f9d1

Browse files
committed
ppr: fix issue with args initialization
1 parent 6494ac1 commit 032f9d1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pythonforandroid/recipe.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,6 +1251,10 @@ class PyProjectRecipe(PythonRecipe):
12511251
extra_build_args = []
12521252
call_hostpython_via_targetpython = False
12531253

1254+
def __init__(self):
1255+
super().__init__()
1256+
self.extra_build_args = []
1257+
12541258
def get_recipe_env(self, arch, **kwargs):
12551259
# Custom hostpython
12561260
self.ctx.python_recipe.python_exe = join(

0 commit comments

Comments
 (0)