diff --git a/datacenterlight/management/commands/all_customers.py b/datacenterlight/management/commands/all_customers.py
index 93b89373..adbd8552 100644
--- a/datacenterlight/management/commands/all_customers.py
+++ b/datacenterlight/management/commands/all_customers.py
@@ -1,12 +1,12 @@
-import json
 import logging
-import sys
 
 from django.core.management.base import BaseCommand
-from membership.models import CustomUser
+
 from hosting.models import (
-    HostingOrder, VMDetail, UserCardDetail, UserHostingKey
+    HostingOrder, VMDetail
 )
+from membership.models import CustomUser
+
 logger = logging.getLogger(__name__)