Skip to content

Commit

Permalink
Removing commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
gumyr committed Jul 14, 2024
1 parent 55c2231 commit cb6cbc3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/build123d/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,10 +435,6 @@ def __and__(self: Plane, other: Union[Axis, Location, Plane, VectorLike, "Shape"
"""intersect vector with other &"""
return self.intersect(other)

# def __repr__(self) -> str:
# """Display vector"""
# return "Vector: " + str((self.X, self.Y, self.Z))

def __repr__(self) -> str:
"""Display vector"""
x = round(self.X, 13) if abs(self.X) > TOLERANCE else 0.0
Expand Down

0 comments on commit cb6cbc3

Please sign in to comment.