Spaces:
Runtime error
Runtime error
Fixed bug
Browse files- src/common.py +1 -1
src/common.py
CHANGED
@@ -39,7 +39,7 @@ def generate_group_tag() -> str:
|
|
39 |
Generates a pseduo-random test group ID for tagging requests which
|
40 |
should be considered together
|
41 |
"""
|
42 |
-
return f"TestGroup_{randint()}_{time()}"
|
43 |
|
44 |
|
45 |
def hf_api_token(write: bool = False) -> str:
|
|
|
39 |
Generates a pseduo-random test group ID for tagging requests which
|
40 |
should be considered together
|
41 |
"""
|
42 |
+
return f"TestGroup_{randint(100, 999)}_{time()}"
|
43 |
|
44 |
|
45 |
def hf_api_token(write: bool = False) -> str:
|