Skip to content

Commit

Permalink
fix last few imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerlz committed Dec 11, 2024
1 parent ba44407 commit a707723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion klippy/configfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
# Copyright (C) 2016-2021 Kevin O'Connor <[email protected]>
#
# This file may be distributed under the terms of the GNU GPLv3 license.
import sys, os, glob, re, time, logging, configparser, io, mathutil
import sys, os, glob, re, time, logging, configparser, io
from .extras.danger_options import get_danger_options
from . import mathutil


error = configparser.Error
Expand Down
2 changes: 1 addition & 1 deletion klippy/gcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# This file may be distributed under the terms of the GNU GPLv3 license.
import os, re, logging, collections, shlex
import mathutil
from . import mathutil


class CommandError(Exception):
Expand Down

0 comments on commit a707723

Please sign in to comment.