Skip to content

Commit

Permalink
fix: remove unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Feb 17, 2024
1 parent 7b5f940 commit ad06613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdcat/cluster/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@click.option('--det-dir', help='Input folder(s) with raw detection results', multiple=True)
@click.option('--save-dir', help='Output directory to save clustered detection results')
@click.option('--device', help='Device to use.', type=int)
def run_cluster(det_dir, save_dir, start_image, end_image, device, config_ini):
def run_cluster(det_dir, save_dir, device, config_ini):

config = cfg.Config(config_ini)
max_area = int(config('cluster', 'max_area'))
Expand Down

0 comments on commit ad06613

Please sign in to comment.