Skip to content

Commit 52d0e7a

Browse files
authored
Update examples.py
1 parent 7e7f0b7 commit 52d0e7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ def _check(i: discord.Interaction, b: discord.ButtonClick):
5757

5858
class Pointer:
5959

60-
"""
61-
Just a small class that facilitates holding and changing the position of the square
62-
"""
60+
"""Just a small class that facilitates holding and changing the position of the square"""
61+
6362
def __init__(self, guild: discord.Guild):
6463
self.guild = guild
6564
self._possition_x = 0
@@ -102,6 +101,7 @@ def get_pointer(obj: typing.Union[discord.Guild, int]):
102101

103102

104103
def display(x: int, y: int):
104+
"""This function ``renders`` and returns the image"""
105105
base = [
106106
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
107107
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],

0 commit comments

Comments
 (0)