Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,10 +9,9 @@ def list_attributes_and_values():
|
|
| 9 |
global value
|
| 10 |
attr = 'temp_files'
|
| 11 |
new_value = getattr(fi_output, attr)
|
| 12 |
-
print(value)
|
| 13 |
-
print(new_value)
|
| 14 |
tmp = new_value - value
|
| 15 |
-
print(tmp)
|
| 16 |
value = new_value
|
| 17 |
return f"[Click here to download the file](https://organizedprogrammers-test-file-editing.hf.space/file={tmp})"
|
| 18 |
|
|
|
|
| 9 |
global value
|
| 10 |
attr = 'temp_files'
|
| 11 |
new_value = getattr(fi_output, attr)
|
| 12 |
+
print(f"value: {value}\nnew value: {new_value}")
|
|
|
|
| 13 |
tmp = new_value - value
|
| 14 |
+
print(f"tmp: {tmp}")
|
| 15 |
value = new_value
|
| 16 |
return f"[Click here to download the file](https://organizedprogrammers-test-file-editing.hf.space/file={tmp})"
|
| 17 |
|