MarlinFlavorParser.py 304 B

12345678910
  1. # Copyright (c) 2017 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from . import FlavorParser
  4. # This parser is intended to interpret the Marlin/Sprinter Firmware flavor
  5. class MarlinFlavorParser(FlavorParser.FlavorParser):
  6. def __init__(self):
  7. super().__init__()