No need to subclass 'object' in python3

This commit is contained in:
jan 2017-08-12 19:30:31 -07:00
commit 0a7c26bb08
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ from .utils import rotation_matrix_2d, vector2
__author__ = 'Jan Petykiewicz'
class Pattern(object):
class Pattern:
"""
2D layout consisting of some set of shapes and references to other Pattern objects
(via SubPattern). Shapes are assumed to inherit from .shapes.Shape or provide equivalent