Skip to content

Commit 83f2be3

Browse files
committed
Remove newline from string interpolation
1 parent 5065b43 commit 83f2be3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/pbatoolkit/fem.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@
1616
with contextlib.redirect_stdout(_strio):
1717
help(_fem)
1818
_strio.seek(0)
19-
setattr(__module, "__doc__", f"{
20-
getattr(__module, "__doc__")}\n\n{_strio.read()}")
19+
setattr(
20+
__module,
21+
"__doc__",
22+
f"{getattr(__module, "__doc__")}\n\n{_strio.read()}"
23+
)
2124

2225

2326
def divergence(mesh, quadrature_order: int = 1, GNe: np.ndarray = None):

0 commit comments

Comments
 (0)