@@ -65,22 +65,22 @@ def sync_freshmen(freshmen_csv: str) -> None:
6565 sync_freshman (freshmen_in_csv )
6666 print ('Done!' )
6767
68-
69- @app .cli .command ('create-packets' )
70- @click .argument ('freshmen_csv' )
71- def create_packets (freshmen_csv : str ) -> None :
72- """
73- Creates a new packet season for each of the freshmen in the given CSV.
74- """
75- print ("WARNING: The 'sync-freshmen' command must be run first to ensure that the state of floor is up to date." )
76- if input ('Continue? (y/N): ' ).lower () != 'y' :
77- return
78-
79- # Collect the necessary data
80- base_date = input_date ('Input the first day of packet season' )
81- freshmen_in_csv = parse_csv (freshmen_csv )
82- create_new_packets (base_date , freshmen_in_csv )
83- print ('Done!' )
68+ # TODO: this needs fixed with a proper datetime
69+ # @app.cli.command('create-packets')
70+ # @click.argument('freshmen_csv')
71+ # def create_packets(freshmen_csv: str) -> None:
72+ # """
73+ # Creates a new packet season for each of the freshmen in the given CSV.
74+ # """
75+ # print("WARNING: The 'sync-freshmen' command must be run first to ensure that the state of floor is up to date.")
76+ # if input('Continue? (y/N): ').lower() != 'y':
77+ # return
78+
79+ # # Collect the necessary data
80+ # base_date = input_date('Input the first day of packet season')
81+ # freshmen_in_csv = parse_csv(freshmen_csv)
82+ # create_new_packets(base_date, freshmen_in_csv)
83+ # print('Done!')
8484
8585
8686@app .cli .command ('ldap-sync' )
0 commit comments