diff --git a/BlankProjectTemplate/src/Food.py b/BlankProjectTemplate/src/Food.py
index 561c0fffbb85ca0968d3d1d8b019bc26fa5ca94f..fde094938c5858897233add4823dea5214067d12 100644
--- a/BlankProjectTemplate/src/Food.py
+++ b/BlankProjectTemplate/src/Food.py
@@ -10,8 +10,8 @@ class Food():
 
 
     ## @brief Food constructor
-    #  @details Initializez the size of the food, this needs to be the same as snake's
-    #           block size
+    #  @details Initializes the size of the food, this needs to be the same as 
+    #   snake's block size
     #  @param blockSize the width and height of the square block representing the food
     def __init__(self, blockSize):
         self.size = blockSize
diff --git a/BlankProjectTemplate/src/Gameplay.py b/BlankProjectTemplate/src/Gameplay.py
index 68f0b2a14058e69f35fd7d7af5a401654e10ef67..de18007a935579bb20233f704947f6a25903953b 100644
--- a/BlankProjectTemplate/src/Gameplay.py
+++ b/BlankProjectTemplate/src/Gameplay.py
@@ -7,7 +7,6 @@
 from random import randint
 from Snake import *
 from Food import *
-from init import *
 
 # One size for all blocks created for snake
 size = 20 
diff --git a/BlankProjectTemplate/src/highscore.py b/BlankProjectTemplate/src/highscore.py
index 0a784db50dba28b8a11099758bfb15a4c56a953f..8cd06be10666b371bcd8a87f3f84e93e8d3c98a4 100644
--- a/BlankProjectTemplate/src/highscore.py
+++ b/BlankProjectTemplate/src/highscore.py
@@ -1,5 +1,4 @@
 import pygame, sys
-import Interface
 
 class HighScore():
   def runfile(runfilename):