Bug fix: incorrect input file reading
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
- Resolved by Amir MOHAMMADI
added 1 commit
- 0fc6e809 - Add default parameter to generate figsize option
enabled an automatic merge when the pipeline for 0fc6e809 succeeds
343 355 344 def titles_option(**kwargs): 345 '''Get the titles option for the different systems''' 346 def custom_titles_option(func): 356 def legends_option(**kwargs): 357 '''Get the legends option for the different systems''' 358 def custom_legends_option(func): 347 359 def callback(ctx, param, value): 348 360 if value is not None: 349 361 value = value.split(',') 350 ctx.meta['titles'] = value 362 ctx.meta['legends'] = value 351 363 return value 352 364 return click.option( 353 '-ts', '--titles', type=click.STRING, default=None, 365 '-ls', '--legends', type=click.STRING, default=None, - Resolved by Theophile GENTILHOMME
mentioned in commit 83f4f98a
I think they were addressed in !60 (merged)
Please register or sign in to reply