Skip to content

Commit b1ef5a7

Browse files
committed
blakciy
1 parent 741fb8c commit b1ef5a7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/loadbearing_wall/linear_reactions.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def from_projected_loads(
7373
magnitude_end_key: str,
7474
location_start_key: str,
7575
location_end_key: str,
76-
reverse_reaction_direction: bool = True
76+
reverse_reaction_direction: bool = True,
7777
):
7878
w0 = magnitude_start_key
7979
w1 = magnitude_end_key
@@ -96,7 +96,9 @@ def from_projected_loads(
9696
linear_reaction_components[load_dir][load_case].append(
9797
linear_reaction
9898
)
99-
return cls(linear_reaction_components, w0, w1, x0, x1, reverse_reaction_direction)
99+
return cls(
100+
linear_reaction_components, w0, w1, x0, x1, reverse_reaction_direction
101+
)
100102

101103
def extract_reaction_string(self, xa: float, xb: float, case: str, dir: str):
102104
"""

src/loadbearing_wall/wall_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def get_reactions(
253253
self.magnitude_end_key,
254254
self.location_start_key,
255255
self.location_end_key,
256-
self.reverse_reaction_force_direction
256+
self.reverse_reaction_force_direction,
257257
)
258258
return lrs.consolidate_reactions(
259259
flatten=flattened, dir_key=direction_key, case_key=case_key

0 commit comments

Comments
 (0)