Skip to content

Commit

Permalink
Because it looks prettier there.
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Aug 20, 2014
1 parent 69701bd commit dbb428e
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 @@ -134,11 +134,11 @@ def parse_command_line():
parser.add_argument('--to', dest='dest', metavar='STATION', help='Specifies final system/station', required=False)
parser.add_argument('--via', dest='via', metavar='STATION', help='Require specified station to be en-route', required=False)
parser.add_argument('--avoid', dest='avoid', metavar='NAME', help='Exclude an item, system or station from the database. Partial matches allowed, e.g. "dom.ap" matches "Dom. Appliance"', required=False, action='append')
parser.add_argument('--credits', metavar='CR', help='Number of credits to start with', type=int, required=True)
parser.add_argument('--hops', metavar='N', help='Number of hops (station-to-station) to run. DEFAULT: 2', type=int, default=2, required=False)
parser.add_argument('--jumps', metavar='N', dest='maxJumps', help='Maximum total jumps (system-to-system)', type=int, default=None, required=False)
parser.add_argument('--jumps-per', metavar='N', dest='maxJumpsPer', help='Maximum jumps (system-to-system) per hop (station-to-station). DEFAULT: 2', type=int, default=2, required=False)
parser.add_argument('--ly-per', metavar='N.NN', dest='maxLyPer', help='Maximum light years per individual jump. DEFAULT: 5.2', type=float, default=5.2, required=False)
parser.add_argument('--credits', metavar='CR', help='Number of credits to start with', type=int, required=True)
parser.add_argument('--capacity', metavar='N', help='Maximum capacity of cargo hold. DEFAULT: 4', type=int, default=4, required=False)
parser.add_argument('--limit', metavar='N', help='Maximum units of any one cargo item to buy. DEFAULT: 0 (unlimited)', 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 dbb428e

Please sign in to comment.