diff --git a/pocket_friends/game_files/io/gpio_handler.py b/pocket_friends/game_files/io/gpio_handler.py index 0dd27dc..3432c84 100644 --- a/pocket_friends/game_files/io/gpio_handler.py +++ b/pocket_friends/game_files/io/gpio_handler.py @@ -10,7 +10,7 @@ ON_HARDWARE = None # Flag to tell other methods if the program is running on ha try: importlib.util.find_spec('RPi.GPIO') import RPi.GPIO as GPIO - ON_HARDWARE = True + ON_HARDWARE = False except ImportError: import pocket_friends.game_files.io.fake_gpio as GPIO ON_HARDWARE = False