File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -199,3 +199,27 @@ def fetch_results():
199199 print ()
200200
201201 print ("\t Total 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 )
You can’t perform that action at this time.
0 commit comments