Skip to content

Commit

Permalink
Edit "refill" and "information"
Browse files Browse the repository at this point in the history
Add printertype "uprint", "uprintse" for refill (line 71) and information (line 60)
  • Loading branch information
256FF committed Nov 8, 2016
1 parent 26e5d95 commit f87c244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stratasys-cartridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def build_argparser(self):
# Information about a cartridge
#
info_parser = subparsers.add_parser("info", help="Print information about a cartridge")
info_parser.add_argument("-t", "--machine-type", action="store", choices=["fox", "fox2", "prodigy", "quantum"], help="Machine type (Fox T-class, Prodigy P-class, Quantum)", required=True)
info_parser.add_argument("-t", "--machine-type", action="store", choices=["fox", "fox2", "prodigy", "quantum", "uprint", "uprintse"], help="Machine type (Fox T-class, Prodigy P-class, Quantum)", required=True)
info_parser.add_argument("-e", "--eeprom-uid", action="store", dest="eeprom_uid", help="Format: [a-f0-9]{14}23, example: 11010a01ba325d23", required=True)
info_parser.add_argument("-i", "--input-file", action="store", dest="input_file", required=True)
info_parser.add_argument("-r", "--recreate-input-file", action="store_true", help="Print information on how to recreate the cartridge")
Expand All @@ -68,7 +68,7 @@ def build_argparser(self):
#
refill_parser = subparsers.add_parser("refill", help="Print information about a cartridge")
# Mandatory option
refill_parser.add_argument("-t", "--machine-type", action="store", choices=["fox", "fox2", "prodigy", "quantum"], help="Machine type (Fox T-class, Prodigy P-class, Quantum)", required=True)
refill_parser.add_argument("-t", "--machine-type", action="store", choices=["fox", "fox2", "prodigy", "quantum", "uprint", "uprintse"], help="Machine type (Fox T-class, Prodigy P-class, Quantum)", required=True)
refill_parser.add_argument("-e", "--eeprom-uid", action="store", dest="eeprom_uid", help="Format: [a-f0-9]{14}23, example: 11010a01ba325d23", required=True)
refill_parser.add_argument("-i", "--input-file", action="store", type=str, dest="input_file", required=True)
refill_parser.add_argument("-o", "--output-file", action="store", type=str, dest="output_file", required=True)
Expand Down

0 comments on commit f87c244

Please sign in to comment.