소스 검색

Removed unused import.

Taddeus Kroes 14 년 전
부모
커밋
21c092de9b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/rules/numerics.py

+ 2 - 2
src/rules/numerics.py

@@ -1,8 +1,8 @@
 from itertools import combinations
 
 from .utils import greatest_common_divisor
-from ..node import ExpressionLeaf as Leaf, Scope, negate, OP_ADD, OP_DIV, \
-        OP_MUL, OP_POW
+from ..node import ExpressionLeaf as Leaf, Scope, OP_ADD, OP_DIV, OP_MUL, \
+        OP_POW
 from ..possibilities import Possibility as P, MESSAGES
 from ..translate import _