changed some imports, blanked out all __init__.py files

This commit is contained in:
Nick Dyer
2021-05-29 21:42:33 -04:00
parent 4e7e37177b
commit af7a4f0a80
7 changed files with 19 additions and 27 deletions

View File

@@ -1 +0,0 @@
"""Initializes all classes needed for the development environment, and faking GPIO inputs."""

View File

@@ -2,7 +2,7 @@
Module to test the GPIO input on the Raspberry Pi.
"""
from collections import deque
from pocket_friends.hardware.gpio_handler import Constants, GPIOHandler
from ..hardware.gpio_handler import Constants, GPIOHandler
def button_test():

View File

@@ -8,7 +8,7 @@ import pygame
import time
from .button_test import button_test
from .menus import Menu
from pocket_friends.hardware.gpio_handler import GPIOHandler, Constants
from ..hardware.gpio_handler import GPIOHandler, Constants
dev_version = '0.0.1'