From ce621a704b4b5d25532a365a32db92fb00265332 Mon Sep 17 00:00:00 2001 From: Marek Ventur Date: Sun, 16 Sep 2018 17:48:21 +0100 Subject: [PATCH] use native dependency for random --- cards_against_emf/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cards_against_emf/main.py b/cards_against_emf/main.py index 75b0c21..9118018 100644 --- a/cards_against_emf/main.py +++ b/cards_against_emf/main.py @@ -2,7 +2,7 @@ ___name___ = "Cards Against EMF" ___license___ = ["MIT"] -___dependencies___ = ["random", "ugfx_helper", "sleep"] +___dependencies___ = ["ugfx_helper", "sleep"] ___categories___ = ["Games"] ___bootstrapped___ = False # Whether or not apps get downloaded on first install. Defaults to "False", mostly likely you won't have to use this at all. @@ -55,4 +55,4 @@ Buttons.enable_interrupt( Buttons.BTN_Menu, lambda button_id:restart_to_default(), on_press=True, - on_release=False) \ No newline at end of file + on_release=False)