We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66b02a4 commit 64ee630Copy full SHA for 64ee630
src/pynite_tools/__init__.py
@@ -9,7 +9,7 @@
9
- combos: Functions for bulk importing load combinations
10
"""
11
12
-__version__ = "0.4.0"
+__version__ = "0.4.1"
13
14
from .reports import (
15
extract_node_reactions,
src/pynite_tools/reports.py
@@ -510,7 +510,7 @@ def extract_span_envelopes(
510
delta = float(round_to_close_integer(envelope_val))
511
span_length = float(round_to_close_integer(sub_member.L()))
512
if delta == 0:
513
- ratio = float('inf')
+ ratio = None
514
else:
515
ratio = abs(span_length / delta)
516
span_envelope = {
0 commit comments