Skip to content

Commit 8d2b8b4

Browse files
committed
Trim verbose docstring and fix inline-comment spacing
1 parent 7d98b4b commit 8d2b8b4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

python/simpleicp/simpleicp.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ def __init__(self, verbose: bool = True) -> None:
4646
Constructor method.
4747
4848
Args:
49-
verbose (bool): print information about the ICP run to stdout. Defaults to True
50-
to preserve the pre-logging behavior of simpleicp; pass verbose=False to
51-
silence stdout, or configure the "simpleicp" logger directly for full control.
49+
verbose (bool): print information about the ICP run to stdout.
5250
"""
5351

5452
self.pc1 = None
@@ -188,7 +186,7 @@ def run(
188186

189187
self.pc2.transform_by_H(H) # temporarily transform pc2
190188
if debug_dirpath:
191-
if it == 0: # write only in first iteration
189+
if it == 0: # write only in first iteration
192190
self.pc1.write_xyz(
193191
Path(debug_dirpath).joinpath(
194192
f"iteration{it:03d}_preoptim_pcfix.xyz"

0 commit comments

Comments
 (0)