Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MarlinFlavorParser.py « GCodeReader « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 482285a2c9508de5ae79665113c0b1fd84a5663f (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright (c) 2017 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

from . import FlavorParser

# This parser is intented for interpret the Marlin/Sprinter Firmware flavor
class MarlinFlavorParser(FlavorParser.FlavorParser):

    def __init__(self):
        super().__init__()