From 547794589c4c431ea625cea21e1149e84f9a7c60 Mon Sep 17 00:00:00 2001 From: Chen Kasirer Date: Mon, 13 May 2024 22:07:30 +0200 Subject: [PATCH] formatting and de-linting --- src/compas_timber/model/model.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/compas_timber/model/model.py b/src/compas_timber/model/model.py index d5f7a4b3d..768e1e992 100644 --- a/src/compas_timber/model/model.py +++ b/src/compas_timber/model/model.py @@ -1,11 +1,6 @@ -import uuid - from compas.geometry import Point from compas_model.models import Model -from ..elements import Beam -from ..connections import Joint - class TimberModel(Model): """Represents a timber model containing beams and joints etc. @@ -158,4 +153,3 @@ def remove_joint(self, joint): def set_topologies(self, topologies): self._topologies = topologies -