Skip to content

Commit

Permalink
chore: ignore type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkparekh committed Dec 1, 2023
1 parent e7a3d57 commit 8f4ebeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emma_perception/commands/extract_visual_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def parse_args() -> argparse.Namespace:
"""Defines arguments."""
parser = argparse.ArgumentParser(prog="PROG")

parser = Trainer.add_argparse_args(parser)
parser = Trainer.add_argparse_args(parser) # type: ignore[assignment]
parser.add_argument("-i", "--input_path", required=True, help="Path to input dataset")
parser.add_argument("-b", "--batch_size", type=int, default=2)
parser.add_argument("-w", "--num_workers", type=int, default=0)
Expand Down

0 comments on commit 8f4ebeb

Please sign in to comment.