소스 검색

Fix for flake8

Kentaro Wada 6 년 전
부모
커밋
f5ffb2f1cd
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      labelme/app.py
  2. 1 1
      labelme/canvas.py

+ 1 - 1
labelme/app.py

@@ -14,7 +14,6 @@ from qtpy import QtWidgets
 
 from labelme import __appname__
 from labelme import __version__
-from labelme import QT5
 from labelme.canvas import Canvas
 from labelme.colorDialog import ColorDialog
 from labelme.config import get_config
@@ -27,6 +26,7 @@ from labelme.lib import newAction
 from labelme.lib import newIcon
 from labelme.lib import struct
 from labelme import logger
+from labelme import QT5
 from labelme.shape import DEFAULT_FILL_COLOR
 from labelme.shape import DEFAULT_LINE_COLOR
 from labelme.shape import Shape

+ 1 - 1
labelme/canvas.py

@@ -2,8 +2,8 @@ from qtpy import QtCore
 from qtpy import QtGui
 from qtpy import QtWidgets
 
-from labelme import QT5
 from labelme.lib import distance
+from labelme import QT5
 from labelme.shape import Shape