diff --git a/src/unitgrade/framework.py b/src/unitgrade/framework.py
index c406aec0493cb034088bc4a75c33704cb4f2ae40..ce06d0d882c7eac13d481a5deed0a46f05b8cd1f 100644
--- a/src/unitgrade/framework.py
+++ b/src/unitgrade/framework.py
@@ -12,13 +12,14 @@ from unitgrade.runners import UTextResult
 from unitgrade.utils import gprint, Capturing2, Capturing
 colorama.init(autoreset=True)  # auto resets your settings after every output
 import numpy
+
 numpy.seterr(all='raise')
 
 def setup_dir_by_class(C, base_dir):
     name = C.__class__.__name__
     return base_dir, name
 
- 
+
 class Report:
     title = "report title"
     abbreviate_questions = False # Should the test items start with 'Question ...' or just be q1).