Skip to content

Commit

Permalink
Fix flake8 in handler
Browse files Browse the repository at this point in the history
Signed-off-by: aapozd <[email protected]>
  • Loading branch information
aaletov committed May 26, 2024
1 parent fdb896a commit 05720fd
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions open_pcc_metric/handler.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
import click


@click.command()
@click.option("--ocloud", required=True, type=str, help="Original point cloud.")
@click.option("--pcloud", required=True, type=str, help="Processed point cloud.")
@click.option(
"--ocloud",
required=True,
type=str,
help="Original point cloud.",
)
@click.option(
"--pcloud",
required=True,
type=str,
help="Processed point cloud.",
)
@click.option(
"--color",
required=False,
Expand All @@ -24,7 +35,13 @@
is_flag=True,
help="Report point-to-plane distance as well.",
)
def cli(ocloud: str, pcloud: str, color: str, hausdorff: bool, point_to_plane: bool) -> None:
def cli(
ocloud: str,
pcloud: str,
color: str,
hausdorff: bool,
point_to_plane: bool,
) -> None:
from . import metric

options = metric.CalculateOptions(
Expand Down

0 comments on commit 05720fd

Please sign in to comment.