summaryrefslogtreecommitdiffstats
path: root/dashboard/dashboard/qtip/format.py
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2017-12-06 09:07:43 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2017-12-06 09:07:43 +0800
commit3f672f0e918c5c461008a7fc0e53e63b79083d34 (patch)
tree12bfc267788dff461cc6bb500ada150223f42ca2 /dashboard/dashboard/qtip/format.py
parent41ff15069d96ea1040cb457b39f909967dabb8bc (diff)
remove deprecated dashboard code
dashboard is not used anymore, substitute by Bitergia dashboard Change-Id: Iccfd634d0d404d23b09d88454dab38425359a2b8 Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
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