Skip to content

Commit d51b507

Browse files
author
Nicholas Carlotti
committed
<FIX> Fixed missing comma
1 parent b76db2d commit d51b507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/argument_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def parse_args(*config):
5252
parser.add_argument("--w-proj", default=.25, type = float)
5353
parser.add_argument("--w-dist", default=.25, type = float)
5454
parser.add_argument("--w-ori", default=.25, type = float)
55-
parser.add_argument("-bs" "--batch-size", "--batch", default=64, type = int, dest='batch_size')
55+
parser.add_argument("-bs", "--batch-size", "--batch", default=64, type = int, dest='batch_size')
5656
parser.add_argument("--w-led", default=.25, type = float)
5757
parser.add_argument("--labeled-count", default = None, type=int)
5858
parser.add_argument("--labeled-count-seed", default = 0, type=int)

0 commit comments

Comments
 (0)