summaryrefslogtreecommitdiffstats
path: root/dashboard/dashboard/qtip/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/dashboard/qtip/format.py')
-rw-r--r--dashboard/dashboard/qtip/format.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/dashboard/dashboard/qtip/format.py b/dashboard/dashboard/qtip/format.py
deleted file mode 100644
index b78fa5b..0000000
--- a/dashboard/dashboard/qtip/format.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /usr/bin/env python
-
-
-def format_qpi(testcase):
- """
- Look for these and leave any of those:
- details.index
-
- If none are present, then return False
- """
- details = testcase['details']
- if 'index' not in details:
- return False
-
- for key, value in details.items():
- if key != 'index':
- del details[key]
-
- return True