Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Molodos committed May 30, 2023
1 parent 91e1544 commit 004c8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elegoo_neptune_3_thumbnails.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def add_snapshot_to_gcode(self, output_device) -> None:
# Get params from G-code
g_code_params_list: list[str] = gcode_list[0].splitlines()
g_code_params: dict[str, str] = {p[1:p.index(":")].lower(): p[p.index(":") + 1:] for p in
g_code_params_list}
g_code_params_list if ":" in p}
"""
Example:
{
Expand Down

0 comments on commit 004c8ca

Please sign in to comment.