From 928aa07cbb684726aec336aa2eee27045242c370 Mon Sep 17 00:00:00 2001 From: Nikolay Khabarov <2xl@mail.ru> Date: Sun, 21 May 2017 15:20:16 +0300 Subject: [PATCH] fix --- cnc/enums.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cnc/enums.py b/cnc/enums.py index 6bd11bc..e0f5633 100644 --- a/cnc/enums.py +++ b/cnc/enums.py @@ -1,7 +1,8 @@ """ This module describes system wide enums. """ -class Plane: + +class Plane(object): """ Enum for choosing plane for circular interpolation. """ PLANE_XY = 1 @@ -9,7 +10,7 @@ class Plane: PLANE_YZ = 3 -class RotationDirection: +class RotationDirection(object): """ Enum for choosing rotation direction. """ CW = 1