Skip to content

Commit b83c1d9

Browse files
committed
Stubbed out remove sig and extend packet commands
1 parent c0a6719 commit b83c1d9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

packet/commands.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,3 +199,27 @@ def fetch_results():
199199
print()
200200

201201
print("\tTotal missed:", required.total - received.total)
202+
203+
204+
@app.cli.command("extend-packet")
205+
@click.argument("packet_id")
206+
def extend_packet(packet_id):
207+
pass
208+
209+
210+
def remove_sig(packet_id, username, is_member):
211+
pass
212+
213+
214+
@app.cli.command("remove-member-sig")
215+
@click.argument("packet_id")
216+
@click.argument("username")
217+
def remove_member_sig(packet_id, username):
218+
remove_sig(packet_id, username, True)
219+
220+
221+
@app.cli.command("remove-freshman-sig")
222+
@click.argument("packet_id")
223+
@click.argument("username")
224+
def remove_freshman_sig(packet_id, username):
225+
remove_sig(packet_id, username, False)

0 commit comments

Comments
 (0)