lbry-android/p4a/pythonforandroid/recipes/brokenrecipe/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

8 lines
183 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()