We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 600c7cd commit e582eeeCopy full SHA for e582eee
vpype_gcode/gwrite.py
@@ -11,7 +11,7 @@
11
import vpype_cli
12
13
# Load the default config
14
-vp.CONFIG_MANAGER.load_config_file(str(Path(__file__).parent / "bundled_configs.toml"))
+vp.config_manager.load_config_file(str(Path(__file__).parent / "bundled_configs.toml"))
15
16
17
def invert_axis(document: vp.Document, invert_x: bool, invert_y: bool):
@@ -63,7 +63,7 @@ def gwrite(
63
The output format can be customized by the user heavily to an extent that you can also
64
output most known non-gcode ascii text files.
65
"""
66
- gwrite_config = vp.CONFIG_MANAGER.config["gwrite"]
+ gwrite_config = vp.config_manager.config["gwrite"]
67
68
# If no profile was provided, try to use a default
69
if not profile:
0 commit comments