Skip to content

Commit 2c17c6e

Browse files
Merge pull request #7 from StructuralPython/releases/v0.1.3
Releases/v0.1.3
2 parents 15c7a2a + 57938fe commit 2c17c6e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/load_distribution/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
loads on beams or other linear elements.
44
"""
55

6-
__version__ = "0.1.2"
6+
__version__ = "0.1.3"
77

88
from load_distribution.load_distribution import *

src/load_distribution/load_distribution.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ def singularities_to_polygon(los: list[Singularity], xy: bool = False) -> Polygo
212212
# duplicate x-ordinates. The goal is to have the minimum amount to describe the
213213
# required shape, even if that means the exact x value is omitted (because we are
214214
# keeping the value immediately to the left and immediately to the right instead).
215-
print(f"{x_acc=}")
216215
x_acc = sorted(list(set(x_acc)))
217216
x_ord_count = Counter([round(x, 6) for x in x_acc])
218217
to_filter = []

0 commit comments

Comments
 (0)