more linting
diff --git a/server/plugins/offloader.py b/server/plugins/offloader.py
index 0f6fea1..11307bc 100644
--- a/server/plugins/offloader.py
+++ b/server/plugins/offloader.py
@@ -25,6 +25,7 @@
 
 class ExecutorPool:
     """A pool of runners for offloading blocking processes to threads, so that async processing can continue"""
+
     def __init__(self, threads=None):
         # If no thread count is specified, will default to: min(32, os.cpu_count() + 4)
         self.threads = concurrent.futures.ThreadPoolExecutor(max_workers=threads)