Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Aug 11, 2014
1 parent 0198730 commit ffe061d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def parse_command_line():
parser.add_argument('--hops', metavar="<Hops>", help="Number of hops to run", type=int, default=2, required=False)
parser.add_argument('--jumps', dest='maxJumps', metavar="<Jumps>", help="Maximum total jumps", type=int, default=None, required=False)
parser.add_argument('--jumps-per', dest='maxJumpsPer', metavar="<Jumps>", help="Maximum jumps per hop", type=int, default=3, required=False)
parser.add_argument('--ly-per', dest='maxLyPer', metvar='<LY>', help="Maximum light years per jump", type=int, default=8, required=False)
parser.add_argument('--ly-per', dest='maxLyPer', metavar='<LY>', help="Maximum light years per jump", type=int, default=8, required=False)
parser.add_argument('--capacity', metavar="<Capactiy>", help="Maximum capacity of cargo hold", type=int, default=4, required=False)
parser.add_argument('--limit', help='Maximum units of any one cargo item to buy', type=int, default=0, required=False)
parser.add_argument('--unique', help='Only visit each station once', default=False, required=False, action='store_true')
Expand Down

0 comments on commit ffe061d

Please sign in to comment.