lbry-android-sdk/p4a/pythonforandroidold/recipes/brokenrecipe/__init__.py

10 lines
184 B
Python
Raw Permalink Normal View History

2022-12-02 21:15:34 +01:00
from pythonforandroid.toolchain import Recipe
class BrokenRecipe(Recipe):
def __init__(self):
print('This is a broken recipe, not a real one!')
recipe = BrokenRecipe()