Skip to content

Commit 14296fc

Browse files
committed
upd
1 parent c52f154 commit 14296fc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

circuitpython_uplot/plot.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ def __init__(
7878
height = 100
7979
if x + width > 481:
8080
print(
81-
"Modify this settings. Some of the graphics will not shown int the screen"
81+
"Modify this setting. Some of the graphics will not shown int the screen"
8282
)
8383
print("Defaulting to x=0")
8484
x = 0
8585
if y + height > 321:
8686
print(
87-
"Modify this settings. Some of the graphics will not shown int the screen"
87+
"Modify this setting. Some of the graphics will not shown int the screen"
8888
)
8989
print("Defaulting to y=0")
9090
y = 0
@@ -162,7 +162,7 @@ def axs_params(self, axstype: Literal["box", "cartesian", "line"] = "box") -> No
162162
"""
163163
Setting up axs visibility
164164
165-
:param axstype: argument with the kind of axs you selected
165+
:param str axstype: argument with the kind of axs you selected
166166
167167
:return: None
168168
@@ -230,7 +230,8 @@ def _drawbox(self) -> None:
230230

231231
def draw_circle(self, radius: int = 5, x: int = 100, y: int = 100) -> None:
232232
"""
233-
Draw a circle in the plot area
233+
Draw a circle in the plot area. This function is kept here for
234+
historical reasons. Please use :meth:`scatter` instead.
234235
235236
:param int radius: circle radius
236237
:param int x: circles center x coordinate position in pixels, Defaults to 100.

0 commit comments

Comments
 (0)