We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9b130 commit a8cc2eaCopy full SHA for a8cc2ea
1 file changed
src/greaseweazle/tools/util.py
@@ -69,7 +69,7 @@ def level(letter):
69
70
drive_desc = """\
71
DRIVE: Drive (and bus) identifier:
72
- 0 | 1 | 2 :: Shugart bus unit
+ 0 | 1 | 2 | 3 :: Shugart bus unit
73
A | B :: IBM/PC bus unit
74
"""
75
@@ -132,6 +132,7 @@ def __call__(self, letter: str) -> Drive:
132
'0': (USB.BusType.Shugart, 0),
133
'1': (USB.BusType.Shugart, 1),
134
'2': (USB.BusType.Shugart, 2),
135
+ '3': (USB.BusType.Shugart, 3),
136
}
137
if not letter.upper() in types:
138
raise argparse.ArgumentTypeError("invalid drive letter: '%s'"
0 commit comments