Skip to content

Commit

Permalink
fix: issue#130: lowercase cmd options
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone authored and eyeonus committed Apr 26, 2024
1 parent 48c0382 commit fd2370b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tradedangerous/commands/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self):
'dest': 'padSize',
'metavar': 'PADSIZES',
'type': 'padsize',
'choices': 'SML?',
'choices': 'SsMmLl?',
}


Expand Down Expand Up @@ -153,7 +153,7 @@ def __init__(self):
'dest': 'planetary',
'metavar': 'PLANETARY',
'type': 'planetary',
'choices': 'YN??',
'choices': 'YyNn?',
}


Expand Down Expand Up @@ -181,7 +181,7 @@ def __init__(self):
'dest': 'fleet',
'metavar': 'FLEET',
'type': 'fleet',
'choices': 'YN?',
'choices': 'YyNn?',
}

class OdysseyArgument(int):
Expand All @@ -208,7 +208,7 @@ def __init__(self):
'dest': 'odyssey',
'metavar': 'ODYSSEY',
'type': 'odyssey',
'choices': 'YN?',
'choices': 'YyNn?',
}


Expand Down

0 comments on commit fd2370b

Please sign in to comment.