removed unused import

This commit is contained in:
Nicholas Dyer 2023-05-13 11:47:48 -04:00
parent 4904ed2184
commit 41ab0406f8

View File

@ -1,6 +1,5 @@
import pygame
import os
from pathlib import Path
import pocket_friends
import importlib
@ -28,7 +27,7 @@ script_dir = os.path.dirname(os.path.abspath(__file__))
resources_dir = script_dir + '/resources'
# Makes Pygame draw on the display of the RPi.
os.environ["SDL_FBDEV"] = "/dev/fb1"
os.environ['SDL_FBDEV'] = '/dev/fb1'
def game(resolution=240):