diff options
author | BonfaceKilz | 2021-04-29 21:45:51 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-29 21:45:51 +0300 |
commit | 23e8e222e8016ea8335d4850070f884ab9b043fe (patch) | |
tree | 495b13f81dd7ce9692db8a8e107d2298962394e7 /wqflask/utility/temp_data.py | |
parent | 67703a57db19c9a1ebcc6991087479979cbbca18 (diff) | |
download | genenetwork2-23e8e222e8016ea8335d4850070f884ab9b043fe.tar.gz |
Run `sed -i 's/(object)//g'`
See: https://is.gd/pL7IJF
Ran:
find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/(object)//g'
Diffstat (limited to 'wqflask/utility/temp_data.py')
-rw-r--r-- | wqflask/utility/temp_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/temp_data.py b/wqflask/utility/temp_data.py index 4144ae00..b2cbd458 100644 --- a/wqflask/utility/temp_data.py +++ b/wqflask/utility/temp_data.py @@ -2,7 +2,7 @@ from redis import Redis import simplejson as json -class TempData(object): +class TempData: def __init__(self, temp_uuid): self.temp_uuid = temp_uuid |