style and type fixes (per flake8)
could potentially fix some bugs in `Library` class and dxf reader
This commit is contained in:
parent
f6ad272c2c
commit
f364970403
31 changed files with 293 additions and 297 deletions
|
|
@ -1,12 +1,11 @@
|
|||
from typing import List, Tuple, Callable, TypeVar, Optional
|
||||
from typing import TypeVar
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import copy
|
||||
|
||||
import numpy # type: ignore
|
||||
from numpy import pi
|
||||
|
||||
from .positionable import Positionable
|
||||
from ..error import PatternError, PatternLockedError
|
||||
#from .positionable import Positionable
|
||||
from ..error import PatternError
|
||||
from ..utils import is_scalar, rotation_matrix_2d, vector2
|
||||
|
||||
T = TypeVar('T', bound='Rotatable')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue