(self)
| 240 | return valid_input |
| 241 | |
| 242 | def get_stats(self): |
| 243 | return render_template('statistics.html', |
| 244 | lat=self.current_location[0], |
| 245 | lng=self.current_location[1], |
| 246 | gmaps_key=config['GMAPS_KEY'], |
| 247 | valid_input=self.get_valid_stat_input() |
| 248 | ) |
| 249 | |
| 250 | def get_status(self): |
| 251 | args = get_args() |
nothing calls this directly
no test coverage detected