Commit 1eb78fe5 authored by Guillaume Seguin's avatar Guillaume Seguin

Fix missing imports (#542)

parent 5475f478
...@@ -13,8 +13,13 @@ ...@@ -13,8 +13,13 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>. # along with Printrun. If not, see <http://www.gnu.org/licenses/>.
import logging
import traceback
from functools import wraps from functools import wraps
from .utils import parse_build_dimensions
def setting_add_tooltip(func): def setting_add_tooltip(func):
@wraps(func) @wraps(func)
def decorator(self, *args, **kwargs): def decorator(self, *args, **kwargs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment