Skip to content

Commit 9a3d717

Browse files
committed
Improved docstrings for the new commands
1 parent 99e8a1c commit 9a3d717

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packet/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def remove_sig(packet_id, username, is_member):
255255
@click.argument("member")
256256
def remove_member_sig(packet_id, member):
257257
"""
258-
Removes the given member's signature from the given packet
258+
Removes the given member's signature from the given packet.
259259
:param member: The member's CSH username
260260
"""
261261
remove_sig(packet_id, member, True)
@@ -266,7 +266,7 @@ def remove_member_sig(packet_id, member):
266266
@click.argument("freshman")
267267
def remove_freshman_sig(packet_id, freshman):
268268
"""
269-
Removes the given freshman's signature from the given packet
269+
Removes the given freshman's signature from the given packet.
270270
:param freshman: The freshman's RIT username
271271
"""
272272
remove_sig(packet_id, freshman, False)

0 commit comments

Comments
 (0)