jfrojanoj commited on
Commit
c60fb5f
·
verified ·
1 Parent(s): 1830c11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ from Gradio_UI import GradioUI
13
  def get_dice_rolls(n_faces:int, n_dice:int)-> list:
14
  """A tool that rolls dice
15
  Args:
16
- _faces: number of dice faces
17
  n_dice: number of dice to roll
18
  """
19
  return [random.randint(1, faces) for _ in range(n_dice)]
 
13
  def get_dice_rolls(n_faces:int, n_dice:int)-> list:
14
  """A tool that rolls dice
15
  Args:
16
+ n_faces: number of dice faces
17
  n_dice: number of dice to roll
18
  """
19
  return [random.randint(1, faces) for _ in range(n_dice)]