diff --git a/packages/py-spinnfrontendcommon/package.py b/packages/py-spinnfrontendcommon/package.py
index 4e8b92837319ebbaf2e9b0bc78dbd3491a9950e9..720c61c08c6cb4bb1cf79a6437950d04af7fad9a 100644
--- a/packages/py-spinnfrontendcommon/package.py
+++ b/packages/py-spinnfrontendcommon/package.py
@@ -4,11 +4,6 @@
 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
 
 from spack.package import *
-from spack.store import find
-from llnl.util import tty
-from os import makedirs
-from urllib.request import urlretrieve
-import os
 
 
 _JAR_URL = "https://github.com/SpiNNakerManchester/JavaSpiNNaker/releases/download/7.0.0/spinnaker-exe.jar"
@@ -42,9 +37,3 @@ class PySpinnfrontendcommon(PythonPackage):
         python_version = spec["python"].version.up_to(2)
         python_lib = prefix.lib.join(f"python{python_version}")
         install_tree("resource_root", python_lib)
-
-        # Test where things are now installed
-        tty.debug(f"Checking contents of {prefix}")
-        for root, dirnames, filenames in os.walk(prefix):
-            for filename in filenames:
-                tty.debug(os.path.join(root, filename))