@@ -121,15 +121,15 @@ def show(redmine, issue_id, journals, pager):
121121
122122
123123@cli .command ()
124- @click .option (OPTIONS ["subject" ]["long" ], OPTIONS ["subject" ]["short" ], default = None )
124+ @click .option (OPTIONS ["subject" ]["long" ], OPTIONS ["subject" ]["short" ], default = None , required = True )
125125@click .option (
126126 OPTIONS ["description" ]["long" ], OPTIONS ["description" ]["short" ], default = None
127127)
128128@click .option (OPTIONS ["edit" ]["long" ], OPTIONS ["edit" ]["short" ], default = False )
129- @click .option (OPTIONS ["project" ]["long" ], OPTIONS ["project" ]["short" ], default = None )
130- @click .option (OPTIONS ["status" ]["long" ], OPTIONS ["status" ]["short" ], default = None )
131- @click .option (OPTIONS ["tracker" ]["long" ], OPTIONS ["tracker" ]["short" ], default = None )
132- @click .option (OPTIONS ["priority" ]["long" ], OPTIONS ["priority" ]["short" ], default = None )
129+ @click .option (OPTIONS ["project" ]["long" ], OPTIONS ["project" ]["short" ], default = None , required = True )
130+ @click .option (OPTIONS ["status" ]["long" ], OPTIONS ["status" ]["short" ], default = None , required = True )
131+ @click .option (OPTIONS ["tracker" ]["long" ], OPTIONS ["tracker" ]["short" ], default = None , required = True )
132+ @click .option (OPTIONS ["priority" ]["long" ], OPTIONS ["priority" ]["short" ], default = None , required = True )
133133@click .option (OPTIONS ["assignee" ]["long" ], OPTIONS ["assignee" ]["short" ], default = None )
134134@click .option (OPTIONS ["start" ]["long" ], OPTIONS ["start" ]["short" ], default = None )
135135@click .option (OPTIONS ["due" ]["long" ], OPTIONS ["due" ]["short" ], default = None )
0 commit comments