From 3cb6b5899a9d765d392846188e0d475d7ed0485a Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 8 Aug 2022 17:43:39 -0700 Subject: [PATCH] Remove a script file I used for the calculator needle thing Signed-off-by: Adam Williamson --- needles/gnome/apps/calculator/temp.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 needles/gnome/apps/calculator/temp.py diff --git a/needles/gnome/apps/calculator/temp.py b/needles/gnome/apps/calculator/temp.py deleted file mode 100644 index 90dceb9f..00000000 --- a/needles/gnome/apps/calculator/temp.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/python - -import glob -import shutil - -for fn in glob.glob("calc_button*.json"): - basename = fn.split(".")[0] - newjson = f"{basename}-flatpak-20220808.json" - newpng = f"{basename}-flatpak-20220808.png" - shutil.copy2(fn, newjson) - shutil.copy2("/tmp/old.png", newpng)