Remove outdated imports
This commit is contained in:
parent
508dd0f030
commit
20032e50be
|
@ -14,10 +14,10 @@
|
||||||
# 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from __future__ import division, unicode_literals
|
from math import sqrt, pi, sin, cos
|
||||||
|
|
||||||
from boxes import *
|
from boxes import *
|
||||||
from math import sqrt, pi, sin, cos
|
|
||||||
|
|
||||||
def offset_radius_in_square(squareside, angle, outset):
|
def offset_radius_in_square(squareside, angle, outset):
|
||||||
"""From the centre of a square, rotate by an angle relative to the
|
"""From the centre of a square, rotate by an angle relative to the
|
||||||
|
|
|
@ -15,10 +15,8 @@ Options:
|
||||||
--list List available generators.
|
--list List available generators.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
|
||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
from pkg_resources import get_distribution
|
import sys
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import boxes
|
import boxes
|
||||||
|
|
Loading…
Reference in New Issue