Spaces:
Build error
Build error
Commit
·
a6e6b00
1
Parent(s):
f54c5d1
fix
Browse files
app.py
CHANGED
|
@@ -111,7 +111,7 @@ def bytes_to_human_readable(num, suffix="B"):
|
|
| 111 |
return f"{num:.1f} Y{suffix}"
|
| 112 |
|
| 113 |
def encode_episodeid(title,season,episode):
|
| 114 |
-
f"{title}_{season}_{episode}"
|
| 115 |
|
| 116 |
def get_all_tv_shows(indexed_cache):
|
| 117 |
"""Get all TV shows from the indexed cache structure JSON file."""
|
|
|
|
| 111 |
return f"{num:.1f} Y{suffix}"
|
| 112 |
|
| 113 |
def encode_episodeid(title,season,episode):
|
| 114 |
+
return f"{title}_{season}_{episode}"
|
| 115 |
|
| 116 |
def get_all_tv_shows(indexed_cache):
|
| 117 |
"""Get all TV shows from the indexed cache structure JSON file."""
|