From f2296021591a8a006889e1689025c9140b3489d5 Mon Sep 17 00:00:00 2001 From: Martin Shetty <1972005+martukas@users.noreply.github.com> Date: Sun, 2 Oct 2022 18:24:44 -0700 Subject: [PATCH] cleanup; updates #1303 --- software/utils/debug/util/devices.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 software/utils/debug/util/devices.py diff --git a/software/utils/debug/util/devices.py b/software/utils/debug/util/devices.py deleted file mode 100755 index a196819d4..000000000 --- a/software/utils/debug/util/devices.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python3 - -import pandas -import json - -url = "https://docs.google.com/spreadsheets/d/e/2PACX-1vRduOfterWmAy_xrc356rRhjz4QDLgOScgG1VPx2-KNeH8zYEe29SCw_DKOJG-5hqSO6BXmG1BumUul/pub?gid=0&single=true&output=tsv" -data = json.loads(pandas.read_csv(url, sep="\t", header=0).to_json(orient="records")) -print(json.dumps(data, indent=4))