mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-10 08:17:49 -06:00

in the GCode and then the right flavor handler is responsible for reading the code. At this moment just the Griffin and RepRap flavors are taken into account.
9 lines
No EOL
221 B
Python
9 lines
No EOL
221 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from . import GCodeFlavor
|
|
|
|
class GriffinFlavor(GCodeFlavor.GCodeFlavor):
|
|
|
|
def __init__(self):
|
|
super().__init__() |