mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
8 lines
183 B
Python
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()
|