123 @param params dictionary containing the request data |
123 @param params dictionary containing the request data |
124 @type dict |
124 @type dict |
125 @return dictionary containing the reply data |
125 @return dictionary containing the reply data |
126 @rtype dict |
126 @rtype dict |
127 """ |
127 """ |
128 # TODO: not implemented yet |
|
129 if self.__cover is None: |
128 if self.__cover is None: |
130 return { |
129 return { |
131 "ok": False, |
130 "ok": False, |
132 "error": "Coverage data has to be loaded first.", |
131 "error": "Coverage data has to be loaded first.", |
133 } |
132 } |
150 @param params dictionary containing the request data |
149 @param params dictionary containing the request data |
151 @type dict |
150 @type dict |
152 @return dictionary containing the reply data |
151 @return dictionary containing the reply data |
153 @rtype dict |
152 @rtype dict |
154 """ |
153 """ |
155 # TODO: not implemented yet |
|
156 if self.__cover is None: |
154 if self.__cover is None: |
157 return { |
155 return { |
158 "ok": False, |
156 "ok": False, |
159 "error": "Coverage data has to be loaded first.", |
157 "error": "Coverage data has to be loaded first.", |
160 } |
158 } |