Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ def init_user_info(uid):
|
|
| 61 |
|
| 62 |
def get_count_i(uid):
|
| 63 |
global count_i_dict
|
| 64 |
-
if uid not count_i_dict:
|
| 65 |
return 1
|
| 66 |
return count_i_dict[uid]["count_i"]
|
| 67 |
|
|
|
|
| 61 |
|
| 62 |
def get_count_i(uid):
|
| 63 |
global count_i_dict
|
| 64 |
+
if uid not in count_i_dict:
|
| 65 |
return 1
|
| 66 |
return count_i_dict[uid]["count_i"]
|
| 67 |
|