lbry-android-sdk/p4a/pythonforandroid/recipes/brokenrecipe/__init__.py
2022-11-29 15:35:24 -05:00

9 lines
184 B
Python

from pythonforandroid.toolchain import Recipe
class BrokenRecipe(Recipe):
def __init__(self):
print('This is a broken recipe, not a real one!')
recipe = BrokenRecipe()