JoseferEins commited on
Commit
d09ec6f
·
verified ·
1 Parent(s): 5fc517d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -10,12 +10,10 @@ from Gradio_UI import GradioUI
10
 
11
  @tool
12
  def plot_omocentric_circles(distance: float, n: int)-> None:
13
- """
14
- A tool that plots n omocentric circles with a given seed distance, each in a different color.
15
-
16
  Args:
17
- distance (float): Distance between consecutive circles.
18
- n (int): Number of circles to plot.
19
  """
20
  fig, ax = plt.subplots()
21
  ax.set_aspect('equal')
 
10
 
11
  @tool
12
  def plot_omocentric_circles(distance: float, n: int)-> None:
13
+ """A tool that plots n omocentric circles with a given seed distance, each in a different color.
 
 
14
  Args:
15
+ distance: Distance between consecutive circles.
16
+ n: Number of circles to plot.
17
  """
18
  fig, ax = plt.subplots()
19
  ax.set_aspect('equal')