geo-wilson commited on
Commit
5f486df
·
verified ·
1 Parent(s): 938d016

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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
- arg1: the guc dash number (ex: 52-)
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))