Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def guc_dash_number(dash:str)-> int: #it's import to specify the return type
|
|
| 14 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 15 |
"""A tool that takes a guc dash number and tells me which batch is this
|
| 16 |
Args:
|
| 17 |
-
|
| 18 |
"""
|
| 19 |
match = re.search(r'(\d+)-', dash)
|
| 20 |
dash_only = int(match.group(1))
|
|
|
|
| 14 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 15 |
"""A tool that takes a guc dash number and tells me which batch is this
|
| 16 |
Args:
|
| 17 |
+
dash: the guc dash number (ex: 52-)
|
| 18 |
"""
|
| 19 |
match = re.search(r'(\d+)-', dash)
|
| 20 |
dash_only = int(match.group(1))
|