Skip to content

Commit 666a4b5

Browse files
committed
Minor reformatting, remove broken Sphinx markup
1 parent 443512d commit 666a4b5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

displayio_cartesian.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,6 @@ def _add_point(self, x: int, y: int) -> None:
504504
:param int x: ``x`` coordinate in the local plane
505505
:param int y: ``y`` coordinate in the local plane
506506
:return: None
507-
rtype: None
508507
"""
509508

510509
local_x, local_y = self._calc_local_xy(x, y)
@@ -566,6 +565,7 @@ def _add_point(self, x: int, y: int) -> None:
566565
self.height,
567566
)
568567
)
568+
569569
else:
570570
# for better error messages we check in detail what failed...
571571
if not self._check_x_in_range(x):
@@ -644,8 +644,6 @@ def clear_plot_lines(self, palette_index=5):
644644
645645
:param int palette_index: color palett index. Defaults to 5
646646
:return: None
647-
648-
rtype: None
649647
"""
650648
self.plot_line_point = None
651649
self._plot_bitmap.fill(palette_index)

0 commit comments

Comments
 (0)